diff options
| author | Deng Qingfang | 2018-06-20 17:34:51 +0000 |
|---|---|---|
| committer | Mathias Kresin | 2018-06-21 04:55:10 +0000 |
| commit | 615186d415054836363644d0cf2c437dd47a7abe (patch) | |
| tree | 7a18c0edc5e3c70c947eab822e3dcfb7422cecd1 | |
| parent | 0daff7fe23db7dd437fecc36bb2acd62f1eb77ba (diff) | |
| download | openwrt-615186d415054836363644d0cf2c437dd47a7abe.tar.gz | |
ramips: fix Newifi D1 mtd partition
Newifi D1 has 32 MiB flash, so the firmware partition size should be 0x1fb0000
Signed-off-by: Deng Qingfang <dengqf6@mail2.sysu.edu.cn>
| -rw-r--r-- | target/linux/ramips/dts/Newifi-D1.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/dts/Newifi-D1.dts b/target/linux/ramips/dts/Newifi-D1.dts index f5c7c91362..5368b19ea1 100644 --- a/target/linux/ramips/dts/Newifi-D1.dts +++ b/target/linux/ramips/dts/Newifi-D1.dts @@ -106,7 +106,7 @@ partition@50000 { label = "firmware"; - reg = <0x50000 0x2000000>; + reg = <0x50000 0x1fb0000>; }; }; }; |