fix packaging of hostap drivers

SVN-Revision: 5545
v19.07.3_mercusys_ac12_duma
Felix Fietkau 18 years ago
parent 6c4b1cc135
commit 9f41f4cfb3

@ -22,24 +22,29 @@ PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
ifeq ($(DUMP),)
-include $(LINUX_DIR)/.config
endif
define Package/kmod-hostap/Default define KernelPackage/hostap/Default/2.4
SECTION:=kernel VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
CATEGORY:=Kernel drivers endef
define KernelPackage/hostap/Default/2.6
VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
endef
define KernelPackage/hostap/Default
SUBMENU:=Wireless Drivers
DESCRIPTION:=\ DESCRIPTION:=\
Host AP is a driver for 802.11b wireless cards based on Intersil \\\ Host AP is a driver for 802.11b wireless cards based on Intersil \\\
Prism2/2.5/3 chipset. It supports so called Host AP mode that allows the \\\ Prism2/2.5/3 chipset. It supports so called Host AP mode that allows the \\\
card to act as an IEEE 802.11 access point. card to act as an IEEE 802.11 access point.
URL:=http://hostap.epitest.fi/ URL:=http://hostap.epitest.fi/
ifeq ($(KERNEL),2.6) $(call KernelPackage/hostap/Default/$(KERNEL))
VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
else
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
endif
endef endef
define Package/kmod-hostap
$(call Package/kmod-hostap/Default) define KernelPackage/hostap
$(call KernelPackage/hostap/Default)
DEPENDS:=@PCI_SUPPORT||PCMCIA_SUPPORT DEPENDS:=@PCI_SUPPORT||PCMCIA_SUPPORT
TITLE:=Host AP support for Prism2/2.5/3 TITLE:=Host AP support for Prism2/2.5/3
DESCRIPTION+=\\\ DESCRIPTION+=\\\
@ -48,18 +53,41 @@ define Package/kmod-hostap
different hardware models. You will also need to enable support for \\\ different hardware models. You will also need to enable support for \\\
PLX/PCI/CS version of the driver to actually use the driver. PLX/PCI/CS version of the driver to actually use the driver.
endef endef
define KernelPackage/hostap/2.4
FILES:= \
$(PKG_BUILD_DIR)/driver/modules/hostap.$(LINUX_KMOD_SUFFIX) \
$(PKG_BUILD_DIR)/driver/modules/hostap_crypt_ccmp.$(LINUX_KMOD_SUFFIX) \
$(PKG_BUILD_DIR)/driver/modules/hostap_crypt_tkip.$(LINUX_KMOD_SUFFIX) \
$(PKG_BUILD_DIR)/driver/modules/hostap_crypt_wep.$(LINUX_KMOD_SUFFIX)
endef
define KernelPackage/hostap/2.6
KCONFIG:=$(CONFIG_HOSTAP)
FILES:= \
$(MODULES_DIR)/kernel/drivers/net/wireless/hostap/hostap.$(LINUX_KMOD_SUFFIX)
endef
define Package/kmod-hostap-pci define KernelPackage/hostap-pci
$(call Package/kmod-hostap/Default) $(call KernelPackage/hostap/Default)
DEPENDS:=kmod-hostap DEPENDS:=kmod-hostap
TITLE:=Host AP driver for PCI adaptors TITLE:=Host AP driver for PCI adaptors
DESCRIPTION+=\\\ DESCRIPTION+=\\\
\\\ \\\
This package contains the Host AP driver for Prism2.5 PCI adaptors. This package contains the Host AP driver for Prism2.5 PCI adaptors.
endef endef
define KernelPackage/hostap-pci/2.4
FILES:= \
$(PKG_BUILD_DIR)/driver/modules/hostap_pci.$(LINUX_KMOD_SUFFIX)
endef
define KernelPackage/hostap-pci/2.6
KCONFIG:=$(CONFIG_HOSTAP_PCI)
FILES:= \
$(MODULES_DIR)/kernel/drivers/net/wireless/hostap/hostap_pci.$(LINUX_KMOD_SUFFIX)
endef
define Package/kmod-hostap-plx define KernelPackage/hostap-plx
$(call Package/kmod-hostap/Default) $(call KernelPackage/hostap/Default)
DEPENDS:=kmod-hostap DEPENDS:=kmod-hostap
TITLE:=Host AP driver for PLX9052 based PCI adaptors TITLE:=Host AP driver for PLX9052 based PCI adaptors
DESCRIPTION+=\\\ DESCRIPTION+=\\\
@ -67,6 +95,16 @@ define Package/kmod-hostap-plx
This package contains the Host AP driver for Prism2/2.5/3 in PLX9052 \\\ This package contains the Host AP driver for Prism2/2.5/3 in PLX9052 \\\
based PCI adaptors. based PCI adaptors.
endef endef
define KernelPackage/hostap-plx/2.4
FILES:= \
$(PKG_BUILD_DIR)/driver/modules/hostap_plx.$(LINUX_KMOD_SUFFIX)
endef
define KernelPackage/hostap-plx/2.6
KCONFIG:=$(CONFIG_HOSTAP_PLX)
FILES:= \
$(MODULES_DIR)/kernel/drivers/net/wireless/hostap/hostap_plx.$(LINUX_KMOD_SUFFIX)
endef
ifeq ($(KERNEL),2.4) ifeq ($(KERNEL),2.4)
define Build/Compile define Build/Compile
@ -77,20 +115,9 @@ ifeq ($(KERNEL),2.4)
modules modules
endef endef
define Package/kmod-hostap/install
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
$(CP) \
$(PKG_BUILD_DIR)/driver/modules/hostap.$(LINUX_KMOD_SUFFIX) \
$(PKG_BUILD_DIR)/driver/modules/hostap_crypt_ccmp.$(LINUX_KMOD_SUFFIX) \
$(PKG_BUILD_DIR)/driver/modules/hostap_crypt_tkip.$(LINUX_KMOD_SUFFIX) \
$(PKG_BUILD_DIR)/driver/modules/hostap_crypt_wep.$(LINUX_KMOD_SUFFIX) \
$(1)/lib/modules/$(LINUX_VERSION)/
endef
define Package/kmod-hostap-pci/install define Package/kmod-hostap-pci/install
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION) install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
$(CP) \ $(CP) \
$(PKG_BUILD_DIR)/driver/modules/hostap_pci.$(LINUX_KMOD_SUFFIX) \
$(1)/lib/modules/$(LINUX_VERSION)/ $(1)/lib/modules/$(LINUX_VERSION)/
endef endef
@ -100,40 +127,19 @@ ifeq ($(KERNEL),2.4)
$(PKG_BUILD_DIR)/driver/modules/hostap_plx.$(LINUX_KMOD_SUFFIX) \ $(PKG_BUILD_DIR)/driver/modules/hostap_plx.$(LINUX_KMOD_SUFFIX) \
$(1)/lib/modules/$(LINUX_VERSION)/ $(1)/lib/modules/$(LINUX_VERSION)/
endef endef
endif else
define Build/Prepare
ifeq ($(KERNEL),2.6) mkdir -p $(PKG_BUILD_DIR)
define Build/Compile
endef endef
ifeq ($(CONFIG_HOSTAP),m) define Build/Configure
define Package/kmod-hostap/install
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
$(CP) \
$(MODULES_DIR)/kernel/drivers/net/wireless/hostap/hostap.$(LINUX_KMOD_SUFFIX) \
$(1)/lib/modules/$(LINUX_VERSION)/
endef endef
endif
define Build/Compile
ifeq ($(CONFIG_HOSTAP_PCI),m)
define Package/kmod-hostap-pci/install
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
$(CP) \
$(MODULES_DIR)/kernel/drivers/net/wireless/hostap/hostap_pci.$(LINUX_KMOD_SUFFIX) \
$(1)/lib/modules/$(LINUX_VERSION)/
endef endef
endif endif
ifeq ($(CONFIG_HOSTAP_PLX),m)
define Package/kmod-hostap-plx/install
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
$(CP) \
$(MODULES_DIR)/kernel/drivers/net/wireless/hostap/hostap_plx.$(LINUX_KMOD_SUFFIX) \
$(1)/lib/modules/$(LINUX_VERSION)/
endef
endif
endif
$(eval $(call BuildPackage,kmod-hostap)) $(eval $(call KernelPackage,hostap))
$(eval $(call BuildPackage,kmod-hostap-pci)) $(eval $(call KernelPackage,hostap-pci))
$(eval $(call BuildPackage,kmod-hostap-plx)) $(eval $(call KernelPackage,hostap-plx))

Loading…
Cancel
Save