diff options
author | Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl> | 2020-01-20 21:34:02 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-01-21 00:29:25 +0100 |
commit | 0d28e5d6440d2a37841a207f943e6e5a23172883 (patch) | |
tree | 2a62512a4f3f0dd545c53ad7bd86fa810b0d932b /target/linux/ath79 | |
parent | 5c73bb12c82c078d8a93cb896348b41598ed9e19 (diff) | |
download | upstream-0d28e5d6440d2a37841a207f943e6e5a23172883.tar.gz upstream-0d28e5d6440d2a37841a207f943e6e5a23172883.tar.bz2 upstream-0d28e5d6440d2a37841a207f943e6e5a23172883.zip |
ath79: fix SUPPORTED_DEVICES for WNDR4300 and WNDR3700v4
Kernel partition increase to 4 MiBs for Netgear WNDR3700v4 and WNDR4300
routers breaks sysupgrade image compatibility with ar71xx builds.
Therefore, SUPPORTED_DEVICES variable has to be removed for both devices
from target makefile.
Reported-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
Diffstat (limited to 'target/linux/ath79')
-rw-r--r-- | target/linux/ath79/image/nand.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/linux/ath79/image/nand.mk b/target/linux/ath79/image/nand.mk index f6929cd88e..95ddca26b0 100644 --- a/target/linux/ath79/image/nand.mk +++ b/target/linux/ath79/image/nand.mk @@ -138,7 +138,6 @@ define Device/netgear_wndr3700-v4 NETGEAR_KERNEL_MAGIC := 0x33373033 NETGEAR_BOARD_ID := WNDR3700v4 NETGEAR_HW_ID := 29763948+128+128 - SUPPORTED_DEVICES += wndr3700v4 $(Device/netgear_ath79_nand) endef TARGET_DEVICES += netgear_wndr3700-v4 @@ -149,7 +148,6 @@ define Device/netgear_wndr4300 NETGEAR_KERNEL_MAGIC := 0x33373033 NETGEAR_BOARD_ID := WNDR4300 NETGEAR_HW_ID := 29763948+0+128+128+2x2+3x3 - SUPPORTED_DEVICES += wndr4300 $(Device/netgear_ath79_nand) endef TARGET_DEVICES += netgear_wndr4300 |