diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-08-07 09:14:45 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-08-07 09:14:45 +0000 |
commit | 655d95675b05c5457ac43115675198a25b7d7adb (patch) | |
tree | f8e5c71b0e95b6bf17c2ac9f2a55f3a135fc9d32 /package/mac80211 | |
parent | c82f121949ec6e959d692b7000b3f4e976dd8210 (diff) |
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
Diffstat (limited to 'package/mac80211')
-rw-r--r-- | package/mac80211/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/mac80211/Makefile b/package/mac80211/Makefile index c59aaa508..a4175ec01 100644 --- a/package/mac80211/Makefile +++ b/package/mac80211/Makefile @@ -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)) |