standardize Makefile, change BUILD_DIR to KERNEL_BUILD_DIR
SVN-Revision: 4837
This commit is contained in:
parent
95a617c4da
commit
ce356103e1
1 changed files with 21 additions and 18 deletions
|
@ -12,29 +12,32 @@ include $(INCLUDE_DIR)/kernel.mk
|
||||||
PKG_NAME:=kmod-wlcompat
|
PKG_NAME:=kmod-wlcompat
|
||||||
PKG_RELEASE:=4
|
PKG_RELEASE:=4
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/kmod-wlcompat/Default
|
||||||
|
SECTION:=kernel
|
||||||
|
CATEGORY:=Kernel drivers
|
||||||
|
DEPENDS:=kmod-brcm-wl
|
||||||
|
TITLE:=Broadcom wl wrapper module
|
||||||
|
DESCRIPTION:=\
|
||||||
|
This package contains a wrapper module, that provides Wireless Extension \\\
|
||||||
|
support for the proprietary Broadcom wl module.
|
||||||
|
VERSION:=$(LINUX_VERSION)+$(BOARD)-$(PKG_RELEASE)
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/kmod-wlcompat
|
define Package/kmod-wlcompat
|
||||||
SECTION:=drivers
|
$(call Package/kmod-wlcompat/Default)
|
||||||
CATEGORY:=Drivers
|
DEFAULT:=y
|
||||||
DEPENDS:=kmod-brcm-wl
|
|
||||||
DEFAULT:=y
|
|
||||||
TITLE:=Wrapper providing Wireless Extensions for Broadcom wl module
|
|
||||||
DESCRIPTION:= \\\
|
|
||||||
A wrapper module, that provides Wireless Extension support for the \\\
|
|
||||||
proprietary Broadcom wl module.
|
|
||||||
VERSION:=$(LINUX_VERSION)+$(BOARD)-$(PKG_RELEASE)
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/kmod-wlcompat-debug
|
define Package/kmod-wlcompat-debug
|
||||||
$(call Package/kmod-wlcompat)
|
$(call Package/kmod-wlcompat/Default)
|
||||||
DEFAULT:=m
|
TITLE+= (debug)
|
||||||
TITLE:=Wrapper providing Wireless Extensions for Broadcom wl module (debug)
|
DESCRIPTION+=\\\
|
||||||
DESCRIPTION:= \\\
|
\\\
|
||||||
A wrapper module, that provides Wireless Extension support for the \\\
|
This is a debugging version.
|
||||||
proprietary Broadcom wl module.
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Prepare
|
define Build/Prepare
|
||||||
|
@ -59,10 +62,10 @@ define Build/Compile
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/kmod-wlcompat/install
|
define Package/kmod-wlcompat/install
|
||||||
install -d -m0755 $(1)/etc/modules.d
|
|
||||||
echo "wlcompat" > $(1)/etc/modules.d/30-wlcompat
|
|
||||||
install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
|
install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlcompat.o $(1)/lib/modules/$(LINUX_VERSION)/
|
$(CP) $(PKG_BUILD_DIR)/wlcompat.o $(1)/lib/modules/$(LINUX_VERSION)/
|
||||||
|
install -d -m0755 $(1)/etc/modules.d
|
||||||
|
echo "wlcompat" > $(1)/etc/modules.d/30-wlcompat
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/kmod-wlcompat-debug/install
|
define Package/kmod-wlcompat-debug/install
|
||||||
|
|
Loading…
Reference in a new issue