1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 21:32:01 +03:00

Fix the mac80211 installation, remove the in-kernel mac80211 package, thanks to Daniel Gimpelevich

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8369 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-08-07 09:14:45 +00:00
parent c82f121949
commit 655d95675b
2 changed files with 9 additions and 13 deletions

View File

@ -45,19 +45,6 @@ define KernelPackage/ieee80211-softmac
endef
$(eval $(call KernelPackage,ieee80211-softmac))
define KernelPackage/mac80211
TITLE:=mac80211 (Devicescape) support
DEPENDS:=@LINUX_2_6
KCONFIG:=CONFIG_MAC80211
FILES:= \
$(LINUX_DIR)/net/wireless/cfg80211.$(LINUX_KMOD_SUFFIX) \
$(LINUX_DIR)/net/mac80211/mac80211.$(LINUX_KMOD_SUFFIX) \
$(LINUX_DIR)/net/mac80211/rc80211_simple.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,20,cfg80211 mac80211 rc80211_simple)
SUBMENU:=$(WIMENU)
endef
$(eval $(call KernelPackage,mac80211))
define KernelPackage/net-bcm43xx
TITLE:=Broadcom BCM43xx driver
DESCRIPTION:=\\\

View File

@ -57,4 +57,13 @@ ifneq ($(KERNEL_PATCHVER),2.6.21)
endef
endif
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/include/mac80211
$(CP) $(PKG_BUILD_DIR)/mac80211/{hostapd_ioctl,ieee80211_common}.h $(STAGING_DIR)/usr/include/mac80211
endef
define Build/UninstallDev
rm -rf $(STAGING_DIR)/usr/include/mac80211
endef
$(eval $(call KernelPackage,mac80211))