mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
cleanup, nuke obsolete 'Kernel drivers' category, convert remaining kmod packages to KernelPackage interface
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6136 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -16,10 +16,10 @@ PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/kmod-wlcompat/Default
|
||||
SECTION:=kernel
|
||||
CATEGORY:=Kernel drivers
|
||||
DEPENDS:=@PACKAGE_kmod-brcm-wl||PACKAGE_kmod-brcm-wl-mimo +wireless-tools
|
||||
define KernelPackage/wlcompat/Default
|
||||
SUBMENU:=Proprietary BCM43xx WiFi driver
|
||||
SUBMENUDEP:=@LINUX_2_4_BRCM
|
||||
DEPENDS:=@LINUX_2_4_BRCM @PACKAGE_kmod-brcm-wl||PACKAGE_kmod-brcm-wl-mimo +wireless-tools
|
||||
TITLE:=Broadcom wl wrapper module
|
||||
DESCRIPTION:=\
|
||||
This package contains a wrapper module, that provides Wireless Extension \\\
|
||||
@@ -27,16 +27,19 @@ define Package/kmod-wlcompat/Default
|
||||
VERSION:=$(LINUX_VERSION)+$(BOARD)-$(PKG_RELEASE)
|
||||
endef
|
||||
|
||||
define Package/kmod-wlcompat
|
||||
$(call Package/kmod-wlcompat/Default)
|
||||
define KernelPackage/wlcompat
|
||||
$(call KernelPackage/wlcompat/Default)
|
||||
FILES:=$(PKG_BUILD_DIR)/wlcompat.o
|
||||
AUTOLOAD:=$(call AutoLoad,50,wlcompat)
|
||||
endef
|
||||
|
||||
define Package/kmod-wlcompat-debug
|
||||
$(call Package/kmod-wlcompat/Default)
|
||||
define KernelPackage/wlcompat-debug
|
||||
$(call KernelPackage/wlcompat/Default)
|
||||
TITLE+= (debug)
|
||||
DESCRIPTION+=\\\
|
||||
\\\
|
||||
This is a debugging version.
|
||||
FILES:=$(PKG_BUILD_DIR)/wlcompat-debug.o
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
@@ -60,17 +63,5 @@ define Build/Compile
|
||||
modules
|
||||
endef
|
||||
|
||||
define Package/kmod-wlcompat/install
|
||||
$(INSTALL_DIR) $(1)/lib/modules/$(LINUX_VERSION)
|
||||
$(CP) $(PKG_BUILD_DIR)/wlcompat.o $(1)/lib/modules/$(LINUX_VERSION)/
|
||||
$(INSTALL_DIR) $(1)/etc/modules.d
|
||||
echo "wlcompat" > $(1)/etc/modules.d/30-wlcompat
|
||||
endef
|
||||
|
||||
define Package/kmod-wlcompat-debug/install
|
||||
$(INSTALL_DIR) $(1)/lib/modules/$(LINUX_VERSION)
|
||||
$(CP) $(PKG_BUILD_DIR)/wlcompat-debug.o $(1)/lib/modules/$(LINUX_VERSION)/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,kmod-wlcompat))
|
||||
$(eval $(call BuildPackage,kmod-wlcompat-debug))
|
||||
$(eval $(call KernelPackage,wlcompat))
|
||||
$(eval $(call KernelPackage,wlcompat-debug))
|
||||
|
||||
Reference in New Issue
Block a user