summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-08 01:15:44 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-08 01:15:44 +0000
commita9316cec517a8a3019c3cfb4c35461e458b4c5df (patch)
tree201203fbf7811fef0ed6f3a4a8b64609bd5e9bf6 /package
parentcc94545efc1407ef1198a80e61128669cfab3649 (diff)
separate stat/debug and needed tools for configuring wlan devices, saves some space in default images
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2857 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/Makefile2
-rw-r--r--package/madwifi-tools/Config.in22
-rw-r--r--package/madwifi-tools/Makefile29
3 files changed, 40 insertions, 13 deletions
diff --git a/package/Makefile b/package/Makefile
index 78a8e2ee7..324503dbc 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -118,7 +118,7 @@ package-$(BR2_PACKAGE_LRZSZ) += lrzsz
package-$(BR2_COMPILE_LUA) += lua
package-$(BR2_PACKAGE_MACCHANGER) += macchanger
package-$(BR2_PACKAGE_MADPLAY) += madplay
-package-$(BR2_PACKAGE_MADWIFI_TOOLS) += madwifi-tools
+package-$(BR2_COMPILE_MADWIFI_TOOLS) += madwifi-tools
package-$(BR2_PACKAGE_MARADNS) += maradns
package-$(BR2_COMPILE_MATRIXSSL) += matrixssl
package-$(BR2_PACKAGE_MIAX) += miax
diff --git a/package/madwifi-tools/Config.in b/package/madwifi-tools/Config.in
index 96ff5dd2f..ba5e465e0 100644
--- a/package/madwifi-tools/Config.in
+++ b/package/madwifi-tools/Config.in
@@ -1,5 +1,22 @@
-config BR2_PACKAGE_MADWIFI_TOOLS
- prompt "madwifi-tools..................... Utilities for configuring the Atheros Wifi driver"
+menu "madwifi.......................... Utilities for the Atheros Wifi driver"
+
+config BR2_COMPILE_MADWIFI_TOOLS
+ tristate
+ default n
+ depends BR2_PACKAGE_MADWIFI_TOOLS_BASE || BR2_PACKAGE_MADWIFI_TOOLS_STATS
+
+config BR2_PACKAGE_MADWIFI_TOOLS_BASE
+ prompt "madwifi-tools-base................ Utilities for configuring the Atheros Wifi driver"
+ tristate
+ default y if BR2_LINUX_2_6_BRCM
+ default m if CONFIG_DEVEL
+ help
+ Driver utilities for Atheros 802.11a/b/g MiniPCI cards
+
+ http://www.madwifi.org/
+
+config BR2_PACKAGE_MADWIFI_TOOLS_STATS
+ prompt "madwifi-tools-stats............... Debug and stat tools for the Atheros Wifi driver"
tristate
default m if CONFIG_DEVEL
help
@@ -7,3 +24,4 @@ config BR2_PACKAGE_MADWIFI_TOOLS
http://www.madwifi.org/
+endmenu
diff --git a/package/madwifi-tools/Makefile b/package/madwifi-tools/Makefile
index af2e82286..7ce2608d6 100644
--- a/package/madwifi-tools/Makefile
+++ b/package/madwifi-tools/Makefile
@@ -15,7 +15,8 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-ng-$(PKG_VERSION)
include $(TOPDIR)/package/rules.mk
-$(eval $(call PKG_template,MADWIFI_TOOLS,madwifi-tools,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH),kmod-madwifi))
+$(eval $(call PKG_template,MADWIFI_TOOLS_BASE,madwifi-tools-base,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH),kmod-madwifi))
+$(eval $(call PKG_template,MADWIFI_TOOLS_STATS,madwifi-tools-stats,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH),kmod-madwifi))
$(PKG_BUILD_DIR)/.configured:
touch $@
@@ -27,15 +28,23 @@ $(PKG_BUILD_DIR)/.built:
all
touch $@
-$(IPKG_MADWIFI_TOOLS):
- install -d -m0755 $(IDIR_MADWIFI_TOOLS)/usr/sbin
- install -m0755 $(PKG_BUILD_DIR)/tools/athstats \
- $(PKG_BUILD_DIR)/tools/athdebug \
- $(PKG_BUILD_DIR)/tools/80211stats \
- $(PKG_BUILD_DIR)/tools/80211debug \
+$(IPKG_MADWIFI_TOOLS_BASE):
+ install -d -m0755 $(IDIR_MADWIFI_TOOLS_BASE)/usr/sbin
+ install -m0755 \
$(PKG_BUILD_DIR)/tools/athctrl \
$(PKG_BUILD_DIR)/tools/athkey \
$(PKG_BUILD_DIR)/tools/wlanconfig \
- $(IDIR_MADWIFI_TOOLS)/usr/sbin
- $(RSTRIP) $(IDIR_MADWIFI_TOOLS)
- $(IPKG_BUILD) $(IDIR_MADWIFI_TOOLS) $(PACKAGE_DIR)
+ $(IDIR_MADWIFI_TOOLS_BASE)/usr/sbin
+ $(RSTRIP) $(IDIR_MADWIFI_TOOLS_BASE)
+ $(IPKG_BUILD) $(IDIR_MADWIFI_TOOLS_BASE) $(PACKAGE_DIR)
+
+$(IPKG_MADWIFI_TOOLS_STATS):
+ install -d -m0755 $(IDIR_MADWIFI_TOOLS_STATS)/usr/sbin
+ install -m0755 \
+ $(PKG_BUILD_DIR)/tools/athstats \
+ $(PKG_BUILD_DIR)/tools/athdebug \
+ $(PKG_BUILD_DIR)/tools/80211stats \
+ $(PKG_BUILD_DIR)/tools/80211debug \
+ $(IDIR_MADWIFI_TOOLS_STATS)/usr/sbin
+ $(RSTRIP) $(IDIR_MADWIFI_TOOLS_STATS)
+ $(IPKG_BUILD) $(IDIR_MADWIFI_TOOLS_STATS) $(PACKAGE_DIR)