[package] madwifi: Disable compression capability on AR71XX and make it optional for other platforms (thanks to David A. Bandel and Dennis Bartsch)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16642 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Vasilis Tsiligiannis 2009-07-01 17:07:52 +00:00
parent 7d7ed4e8a3
commit 362e8b56f6
2 changed files with 13 additions and 1 deletions

View File

@ -5,6 +5,14 @@ config MADWIFI_DEBUG
depends on DEVEL && PACKAGE_kmod-madwifi depends on DEVEL && PACKAGE_kmod-madwifi
default n default n
config MADWIFI_COMPRESSION
bool "Enable Atheros Super A/G Compression"
depends on PACKAGE_kmod-madwifi
depends !TARGET_ar71xx
default n
help
Enables Atheros Super A/G Hardware Compression Engine.
choice choice
prompt "Madwifi version" prompt "Madwifi version"
depends on PACKAGE_kmod-madwifi depends on PACKAGE_kmod-madwifi

View File

@ -46,7 +46,11 @@ PKG_BUILD_DEPENDS:=wprobe
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
COMPRESSION:=1 ifdef CONFIG_MADWIFI_COMPRESSION
COMPRESSION:=1
else
COMPRESSION:=0
endif
define Download/hal define Download/hal
FILE:=$(HAL_FILE) FILE:=$(HAL_FILE)