diff options
author | David Bauer <mail@david-bauer.net> | 2019-02-23 00:25:07 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-02-26 23:20:04 +0100 |
commit | 4ecf2ee4a0d375d198f515c3e038de62323e0b85 (patch) | |
tree | 2d2f847d2c8e98597a9c56a0a782d650b9669990 /target/linux/ath79 | |
parent | 5568c8a9fe6c4769a5b8ac6254224068601802b0 (diff) | |
download | upstream-4ecf2ee4a0d375d198f515c3e038de62323e0b85.tar.gz upstream-4ecf2ee4a0d375d198f515c3e038de62323e0b85.tar.bz2 upstream-4ecf2ee4a0d375d198f515c3e038de62323e0b85.zip |
ath79: fix support-list for TP-Link WDR3600
The TP-Link WDR3600 shares the same machine-code in the ar71xx target,
thus expecting "tl-wdr4300" not "tl-wdr3600" in the support-list
metadata to allow non-forced sysupgrades from ar71xx to ath79.
With this, it is possible to flash a WDR4300 image on the WDR3600. It
is no problem however, as the only difference is the 5GHz WiFi chip
which has 3SS instead of 2SS. Both work with either image.
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'target/linux/ath79')
-rw-r--r-- | target/linux/ath79/image/generic-tp-link.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ath79/image/generic-tp-link.mk b/target/linux/ath79/image/generic-tp-link.mk index 2e8897396b..db11a6f4ba 100644 --- a/target/linux/ath79/image/generic-tp-link.mk +++ b/target/linux/ath79/image/generic-tp-link.mk @@ -122,7 +122,7 @@ define Device/tplink_tl-wdr3600 DEVICE_TITLE := TP-Link TL-WDR3600 DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-usb-ledtrig-usbport TPLINK_HWID := 0x36000001 - SUPPORTED_DEVICES += tl-wdr3600 + SUPPORTED_DEVICES += tl-wdr4300 endef TARGET_DEVICES += tplink_tl-wdr3600 |