ARM: shmobile: dts: koelsch: Fix flash partition label and size
Update the size and names of flash partitions to match the expectations of the loader which are as follows: "loader"---0x0000_0000-0x0008_0000 [loader program (readonly)] "user" ---0x0008_0000-0x0060_0000 [U-Boot + bootargs + dt + uImage (readonly)] "flash" ---0x0060_0000-0x0400_0000 [filesystem and free (read/write)] ["user"'s assumed breakdown] U-boot (0x0008_0000-0x000c_0000) 256KiB bootargs (0x000c_0000-0x0010_0000) 256KiB Device tree (0x0010_0000-0x0014_0000) 256KiB zImage (0x0014_0000-0x0060_0000) 4.75MiB Signed-off-by: Simon Horman <horms+renesas@verge.net.au> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
This commit is contained in:
parent
c7bab9f929
commit
5f950e62b4
|
@ -452,13 +452,13 @@
|
||||||
read-only;
|
read-only;
|
||||||
};
|
};
|
||||||
partition@80000 {
|
partition@80000 {
|
||||||
label = "bootenv";
|
label = "user";
|
||||||
reg = <0x00080000 0x00080000>;
|
reg = <0x00080000 0x00580000>;
|
||||||
read-only;
|
read-only;
|
||||||
};
|
};
|
||||||
partition@100000 {
|
partition@600000 {
|
||||||
label = "data";
|
label = "flash";
|
||||||
reg = <0x00100000 0x03f00000>;
|
reg = <0x00600000 0x03a00000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue