Skip to content
Snippets Groups Projects
Commit d0a12974 authored by Vasilis Tsiligiannis's avatar Vasilis Tsiligiannis
Browse files

madwifi: Disable compression capability on AR71XX and make it optional for...

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

SVN-Revision: 16642
parent 9e948069
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment