diff options
author | Alexander Müller <donothingloop@gmail.com> | 2020-07-17 18:46:19 +0200 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-07-19 02:01:06 +0200 |
commit | 1623defbdbb852a4018329d07673b4b8f66225a8 (patch) | |
tree | 178dd0788dbe442a0e39f1c5fc5eddffcb239a3a /target/linux/ramips/dts | |
parent | 2e4626ae77fe81c45fb708a37ac1709aefa033d3 (diff) | |
download | upstream-1623defbdbb852a4018329d07673b4b8f66225a8.tar.gz upstream-1623defbdbb852a4018329d07673b4b8f66225a8.tar.bz2 upstream-1623defbdbb852a4018329d07673b4b8f66225a8.zip |
ramips: fix flash layout for TP-Link TL-WR841N v14
The config partition was missing from the flash layout of the device.
Although the stock firmware resets a corrupted config partition to the
default values, the TFTP flash with an image bigger than 0x3d0000 will
truncate the image as the bootloader only copies 0x3d0000 bytes to flash
during TFTP flashing.
Fixed by adding the config partition and shrinking the firmware
partition.
Fixes: 3fd97c522bb7 ("ramips: add support for TP-Link TL-WR841n v14")
Signed-off-by: Alexander Müller <donothingloop@gmail.com>
Diffstat (limited to 'target/linux/ramips/dts')
-rw-r--r-- | target/linux/ramips/dts/mt7628an_tplink_tl-wr841n-v14.dts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/target/linux/ramips/dts/mt7628an_tplink_tl-wr841n-v14.dts b/target/linux/ramips/dts/mt7628an_tplink_tl-wr841n-v14.dts index b33c2ecae8..885e069b02 100644 --- a/target/linux/ramips/dts/mt7628an_tplink_tl-wr841n-v14.dts +++ b/target/linux/ramips/dts/mt7628an_tplink_tl-wr841n-v14.dts @@ -81,7 +81,13 @@ partition@10000 { compatible = "tplink,firmware"; label = "firmware"; - reg = <0x10000 0x3e0000>; + reg = <0x10000 0x3d0000>; + }; + + partition@3e0000 { + label = "config"; + reg = <0x3e0000 0x10000>; + read-only; }; factory: partition@3f0000 { |