diff options
author | David Bauer <mail@david-bauer.net> | 2018-08-18 14:01:59 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2018-08-19 18:58:04 +0200 |
commit | 98d377037963068218f168f6ac19c3ade6c0e398 (patch) | |
tree | 9bb29b61f2e8f316bed4a7ccb75150a07ec71c71 /target | |
parent | f195ab766c02d54cf5e9e95ac4869289d12c9d96 (diff) | |
download | upstream-98d377037963068218f168f6ac19c3ade6c0e398.tar.gz upstream-98d377037963068218f168f6ac19c3ade6c0e398.tar.bz2 upstream-98d377037963068218f168f6ac19c3ade6c0e398.zip |
ath79: fix TL-MR3020 image metadata
Sysupgrading to ath79 from ar71xx currently fails because of mismatching
supported_devices. ar71xx is expecting "tl-mr3020" which is missing in
the ath79 image. Upgrading from ath79 is unaffected, as the image
contains the old string for ar71xx and the new one coming from the
device-tree.
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ath79/image/tiny-tp-link.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ath79/image/tiny-tp-link.mk b/target/linux/ath79/image/tiny-tp-link.mk index 6ccc9d7dba..dadcd24b42 100644 --- a/target/linux/ath79/image/tiny-tp-link.mk +++ b/target/linux/ath79/image/tiny-tp-link.mk @@ -17,7 +17,7 @@ define Device/tplink_tl-mr3020-v1 DEVICE_TITLE := TP-LINK TL-MR3020 v1 DEVICE_PACKAGES := kmod-usb-core kmod-usb-chipidea2 kmod-usb-ledtrig-usbport TPLINK_HWID := 0x30200001 - SUPPORTED_DEVICES += tl-mr3020-v1 + SUPPORTED_DEVICES += tl-mr3020 endef TARGET_DEVICES += tplink_tl-mr3020-v1 |