diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-07-22 17:36:48 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2019-08-05 10:54:11 +0200 |
commit | 8b76c6695b9274e3c12fdf80bcad7dc0c7202585 (patch) | |
tree | c0261302d307fd729ffc37848b916170a2b38a87 /target/linux/ath79/image | |
parent | 4254193c1dc27e18baeb7488ac7fd4ce1afc5723 (diff) | |
download | upstream-8b76c6695b9274e3c12fdf80bcad7dc0c7202585.tar.gz upstream-8b76c6695b9274e3c12fdf80bcad7dc0c7202585.tar.bz2 upstream-8b76c6695b9274e3c12fdf80bcad7dc0c7202585.zip |
ath79: add support for TP-Link TL-WR841N/ND v12
This router has the same hardware as TP-LINK TL-WR841N/ND v11 (same
FCC ID, same TFTP image name...).
Flash instruction (WebUI):
Download *-factory.bin image and upload it via the firmwary upgrade
function of the stock firmware WebUI.
Flash instruction (TFTP):
1. Set PC to fixed ip address 192.168.0.66
2. Download *-factory.bin image and rename it to wr841nv11_tp_recovery.bin
(it's really v11, not v12)
3. Start a tftp server with the image file in its root directory
4. Turn off the router
5. Press and hold Reset button
6. Turn on router with the reset button pressed and wait ~15 seconds
7. Release the reset button and after a short time
the firmware should be transferred from the tftp server
8. Wait ~30 second to complete recovery.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/ath79/image')
-rw-r--r-- | target/linux/ath79/image/tiny-tp-link.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/ath79/image/tiny-tp-link.mk b/target/linux/ath79/image/tiny-tp-link.mk index 73c6999669..7e89abaed2 100644 --- a/target/linux/ath79/image/tiny-tp-link.mk +++ b/target/linux/ath79/image/tiny-tp-link.mk @@ -189,6 +189,18 @@ define Device/tplink_tl-wr841-v11 endef TARGET_DEVICES += tplink_tl-wr841-v11 +define Device/tplink_tl-wr841-v12 + $(Device/tplink-4mlzma) + ATH_SOC := qca9533 + DEVICE_MODEL := TL-WR841N/ND + DEVICE_VARIANT := v12 + TPLINK_HWID := 0x08410012 + IMAGES += factory-us.bin factory-eu.bin + IMAGE/factory-us.bin := append-rootfs | mktplinkfw factory -C US + IMAGE/factory-eu.bin := append-rootfs | mktplinkfw factory -C EU +endef +TARGET_DEVICES += tplink_tl-wr841-v12 + define Device/tplink_tl-wr941-v2 $(Device/tplink-4m) ATH_SOC := ar9132 |