diff options
author | Mathias Kresin <dev@kresin.me> | 2018-07-10 19:22:41 +0200 |
---|---|---|
committer | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2018-10-16 15:07:41 +0100 |
commit | 80c61c161ac5943137ade233d62cf89d746de5a2 (patch) | |
tree | f6260a84b8d5696e645f59e6b68b9a2c21c4824a /target/linux/ath79 | |
parent | 1063d904b78297b3e21a352bed19bd312235ff65 (diff) | |
download | upstream-80c61c161ac5943137ade233d62cf89d746de5a2.tar.gz upstream-80c61c161ac5943137ade233d62cf89d746de5a2.tar.bz2 upstream-80c61c161ac5943137ade233d62cf89d746de5a2.zip |
treewide: use wpad-basic for not small flash targets
Add out of the box support for 802.11r and 802.11w to all targets not
suffering from small flash.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Mathias did all the heavy lifting on this, but I'm the one who should
get shouted at for committing.
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Diffstat (limited to 'target/linux/ath79')
-rw-r--r-- | target/linux/ath79/Makefile | 2 | ||||
-rw-r--r-- | target/linux/ath79/generic/target.mk | 2 | ||||
-rw-r--r-- | target/linux/ath79/nand/target.mk | 2 | ||||
-rw-r--r-- | target/linux/ath79/tiny/target.mk | 2 |
4 files changed, 7 insertions, 1 deletions
diff --git a/target/linux/ath79/Makefile b/target/linux/ath79/Makefile index 2d8ca7efdb..a0dc96ca09 100644 --- a/target/linux/ath79/Makefile +++ b/target/linux/ath79/Makefile @@ -14,6 +14,6 @@ include $(INCLUDE_DIR)/target.mk DEFAULT_PACKAGES += \ kmod-gpio-button-hotplug swconfig \ - kmod-ath9k wpad-mini uboot-envtools + kmod-ath9k uboot-envtools $(eval $(call BuildTarget)) diff --git a/target/linux/ath79/generic/target.mk b/target/linux/ath79/generic/target.mk index 64eb205e4d..0a26110d27 100644 --- a/target/linux/ath79/generic/target.mk +++ b/target/linux/ath79/generic/target.mk @@ -1,6 +1,8 @@ BOARDNAME:=Generic FEATURES += squashfs +DEFAULT_PACKAGES += wpad-basic + define Target/Description Build firmware images for generic Atheros AR71xx/AR913x/AR934x based boards. endef diff --git a/target/linux/ath79/nand/target.mk b/target/linux/ath79/nand/target.mk index a53603d27b..91afe675c5 100644 --- a/target/linux/ath79/nand/target.mk +++ b/target/linux/ath79/nand/target.mk @@ -1,6 +1,8 @@ BOARDNAME := Generic devices with NAND flash FEATURES += squashfs nand rtc +DEFAULT_PACKAGES += wpad-basic + define Target/Description Build firmware for Atheros AR71xx/AR913x based boards with NAND flash, e.g. Netgear WNDR4300. diff --git a/target/linux/ath79/tiny/target.mk b/target/linux/ath79/tiny/target.mk index 87af3ef2bf..dba57e5965 100644 --- a/target/linux/ath79/tiny/target.mk +++ b/target/linux/ath79/tiny/target.mk @@ -1,6 +1,8 @@ BOARDNAME:=Devices with small flash FEATURES += squashfs small_flash +DEFAULT_PACKAGES += wpad-mini + define Target/Description Build firmware images for Atheros AR71xx/AR913x/AR934x based boards with small flash endef |