diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-06-07 15:19:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-06-07 15:19:40 +0000 |
commit | dec0d7f025c104f85fafe8c5f47dcb52df17b5b9 (patch) | |
tree | 0ff07a3453876845a934a495f57c9b8315aec9cb /package/kernel/mac80211 | |
parent | 8b4dd24444aede8b8b4fc6706b9d32459d1300fb (diff) | |
download | upstream-dec0d7f025c104f85fafe8c5f47dcb52df17b5b9.tar.gz upstream-dec0d7f025c104f85fafe8c5f47dcb52df17b5b9.tar.bz2 upstream-dec0d7f025c104f85fafe8c5f47dcb52df17b5b9.zip |
brcm47xx: add a "legacy" subtarget that is usable for low-end 802.11g devices like WRT54G
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 41041
Diffstat (limited to 'package/kernel/mac80211')
-rw-r--r-- | package/kernel/mac80211/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/kernel/mac80211/Makefile b/package/kernel/mac80211/Makefile index d3169587f8..e260993b89 100644 --- a/package/kernel/mac80211/Makefile +++ b/package/kernel/mac80211/Makefile @@ -1167,6 +1167,7 @@ config PACKAGE_B43_USE_BCMA config B43_FW_SQUASH_COREREVS string "Core revisions to include" depends on B43_FW_SQUASH + default "5,6,7,8,9,10,11,13,15" if TARGET_brcm47xx_legacy default "5,6,7,8,9,10,11,13,15,16,29" help This is a comma seperated list of core revision numbers. @@ -1180,6 +1181,7 @@ config PACKAGE_B43_USE_BCMA config B43_FW_SQUASH_PHYTYPES string "PHY types to include" depends on B43_FW_SQUASH + default "G,LP" if TARGET_brcm47xx_legacy default "G,LP,N,HT" help This is a comma seperated list of PHY types: @@ -1204,9 +1206,11 @@ config PACKAGE_B43_USE_BCMA This allows choosing buses that b43 should support. config PACKAGE_B43_BUSES_BCMA_AND_SSB + depends on !TARGET_brcm47xx_legacy bool "BCMA and SSB" config PACKAGE_B43_BUSES_BCMA + depends on !TARGET_brcm47xx_legacy bool "BCMA only" config PACKAGE_B43_BUSES_SSB @@ -1234,6 +1238,7 @@ config PACKAGE_B43_USE_BCMA config PACKAGE_B43_PHY_N bool "Enable support for N-PHYs" + default n if TARGET_brcm47xx_legacy default y help Enable support for N-PHY. This includes support for the following devices: @@ -1256,6 +1261,7 @@ config PACKAGE_B43_USE_BCMA config PACKAGE_B43_PHY_HT bool "Enable support for HT-PHYs" + default n if TARGET_brcm47xx_legacy default y help Enable support for HT-PHY. This includes support for the following devices: |