diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile
index 78a8e2ee702368faf86a372363e05cd68f1f1abf..324503dbcef192f52cd9947188fec21fe71f1e60 100644
--- a/openwrt/package/Makefile
+++ b/openwrt/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/openwrt/package/madwifi-tools/Config.in b/openwrt/package/madwifi-tools/Config.in
index 96ff5dd2f7658c6343f5163947ddce33fbcccfee..ba5e465e0a8853aa17242202234e8c36497307bd 100644
--- a/openwrt/package/madwifi-tools/Config.in
+++ b/openwrt/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/openwrt/package/madwifi-tools/Makefile b/openwrt/package/madwifi-tools/Makefile
index af2e8228615d4bdcf96e84646d689d7960292fc3..7ce2608d63c2678feea657d3929c27c28cbf74f8 100644
--- a/openwrt/package/madwifi-tools/Makefile
+++ b/openwrt/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)