madwifi: Disable compression capability on AR71XX and make it optional for other platforms (thanks to David A. Bandel and Dennis Bartsch)
SVN-Revision: 16642
This commit is contained in:
parent
9e94806990
commit
d0a129742f
2 changed files with 13 additions and 1 deletions
|
@ -5,6 +5,14 @@ config MADWIFI_DEBUG
|
|||
depends on DEVEL && PACKAGE_kmod-madwifi
|
||||
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
|
||||
prompt "Madwifi version"
|
||||
depends on PACKAGE_kmod-madwifi
|
||||
|
|
|
@ -46,7 +46,11 @@ PKG_BUILD_DEPENDS:=wprobe
|
|||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
COMPRESSION:=1
|
||||
ifdef CONFIG_MADWIFI_COMPRESSION
|
||||
COMPRESSION:=1
|
||||
else
|
||||
COMPRESSION:=0
|
||||
endif
|
||||
|
||||
define Download/hal
|
||||
FILE:=$(HAL_FILE)
|
||||
|
|
Loading…
Reference in a new issue