mediatek: Update mt7622-reyee-ax3200-e5.dts
fixed wrong reg.
The original commit assumed the size part was the end of the reg.
Fixes: 7dbac3433f
("mediatek: add support for reyee AX3200-E5")
Signed-off-by: Boyang Sun <boyinthesun@163.com>
Link: https://github.com/openwrt/openwrt/pull/18074
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
8c3a43be27
commit
f4ba980f15
1 changed files with 7 additions and 7 deletions
|
@ -35,43 +35,43 @@
|
||||||
|
|
||||||
partition@20000 {
|
partition@20000 {
|
||||||
label = "ATF";
|
label = "ATF";
|
||||||
reg = <0x20000 0x30000>;
|
reg = <0x20000 0x10000>;
|
||||||
read-only;
|
read-only;
|
||||||
};
|
};
|
||||||
|
|
||||||
partition@30000 {
|
partition@30000 {
|
||||||
label = "u-boot";
|
label = "u-boot";
|
||||||
reg = <0x30000 0x80000>;
|
reg = <0x30000 0x50000>;
|
||||||
read-only;
|
read-only;
|
||||||
};
|
};
|
||||||
|
|
||||||
partition@80000 {
|
partition@80000 {
|
||||||
label = "u-boot-env";
|
label = "u-boot-env";
|
||||||
reg = <0x80000 0x90000>;
|
reg = <0x80000 0x10000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
factory: partition@90000 {
|
factory: partition@90000 {
|
||||||
label = "Factory";
|
label = "Factory";
|
||||||
reg = <0x90000 0xd0000>;
|
reg = <0x90000 0x40000>;
|
||||||
read-only;
|
read-only;
|
||||||
};
|
};
|
||||||
|
|
||||||
partition@d0000 {
|
partition@d0000 {
|
||||||
label = "product_info";
|
label = "product_info";
|
||||||
reg = <0xd0000 0xe0000>;
|
reg = <0xd0000 0x10000>;
|
||||||
read-only;
|
read-only;
|
||||||
};
|
};
|
||||||
|
|
||||||
partition@e0000 {
|
partition@e0000 {
|
||||||
label = "kdump";
|
label = "kdump";
|
||||||
reg = <0xe0000 0xf0000>;
|
reg = <0xe0000 0x10000>;
|
||||||
read-only;
|
read-only;
|
||||||
};
|
};
|
||||||
|
|
||||||
partition@f0000 {
|
partition@f0000 {
|
||||||
compatible = "denx,fit";
|
compatible = "denx,fit";
|
||||||
label = "firmware";
|
label = "firmware";
|
||||||
reg = <0xf0000 0x1000000>;
|
reg = <0xf0000 0xf10000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue