X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0dcc8eefcb3bb4ecaae0f22c3ac444218a6f9122..17c7b6c3fdc48301e50d22cc6138ede16bd1be24:/package/wlcompat/Makefile diff --git a/package/wlcompat/Makefile b/package/wlcompat/Makefile index aa34e61aa..78e3c0fcf 100644 --- a/package/wlcompat/Makefile +++ b/package/wlcompat/Makefile @@ -10,33 +10,33 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=kmod-wlcompat -PKG_RELEASE:=4 - -PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME) +PKG_RELEASE:=6 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:=@TARGET_BRCM_2_4 + DEPENDS:=@TARGET_BRCM_2_4 @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 \\\ support for the proprietary Broadcom wl module. - 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 +60,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))