diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-02-27 14:46:24 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-03-05 12:53:23 +0100 |
commit | 6b7a525a725a78ff961d91a76e4ea9fbb7066178 (patch) | |
tree | 9372dcb9a25139e7ef36422118f45fa6a3bc91df /target/linux/ramips/dts | |
parent | bdd4153b0ee2cf2bcd26902be41b93827507b856 (diff) | |
download | upstream-6b7a525a725a78ff961d91a76e4ea9fbb7066178.tar.gz upstream-6b7a525a725a78ff961d91a76e4ea9fbb7066178.tar.bz2 upstream-6b7a525a725a78ff961d91a76e4ea9fbb7066178.zip |
ramips: fix partition offset for D-Link DIR-810L
The Jffs2 partition for the D-Link DIR-810L is currently off by
0x10000. Apply the correct offset based on the other partitions'
size/offset and the information about stock OS from the Wiki.
This is just based on the named information and _not_ verified
on device.
Fixes: 36e3424fa520 ("ramips: add support for dir810l and asus rp-n53")
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Tested-by: Roger Pueyo Centelles <roger.pueyo@guifi.net>
Diffstat (limited to 'target/linux/ramips/dts')
-rw-r--r-- | target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts b/target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts index da8d2238a1..0b1ca26ba4 100644 --- a/target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts +++ b/target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts @@ -102,9 +102,9 @@ read-only; }; - partition@e0000 { + partition@f0000 { label = "Jffs2"; - reg = <0xe0000 0x80000>; + reg = <0xf0000 0x80000>; read-only; }; |