tests/subsys/fs/littlefs: correct flash partition unit address
Unit addresses for partitions should correspond to the start address. Signed-off-by: Peter A. Bigot <pab@pabigot.com>
This commit is contained in:
parent
b652739a94
commit
17945358e8
|
@ -19,11 +19,11 @@
|
|||
label = "small";
|
||||
reg = <0x00000000 0x00010000>;
|
||||
};
|
||||
partition@200000 {
|
||||
partition@10000 {
|
||||
label = "medium";
|
||||
reg = <0x00010000 0x000F0000>;
|
||||
};
|
||||
partition@220000 {
|
||||
partition@100000 {
|
||||
label = "large";
|
||||
reg = <0x00100000 0x00300000>;
|
||||
};
|
||||
|
|
|
@ -19,11 +19,11 @@
|
|||
label = "small";
|
||||
reg = <0x00000000 0x00010000>;
|
||||
};
|
||||
partition@200000 {
|
||||
partition@10000 {
|
||||
label = "medium";
|
||||
reg = <0x00010000 0x000F0000>;
|
||||
};
|
||||
partition@220000 {
|
||||
partition@100000 {
|
||||
label = "large";
|
||||
reg = <0x00100000 0x00300000>;
|
||||
};
|
||||
|
|
|
@ -14,11 +14,11 @@
|
|||
label = "small";
|
||||
reg = <0x00000000 0x00010000>;
|
||||
};
|
||||
partition@200000 {
|
||||
partition@10000 {
|
||||
label = "medium";
|
||||
reg = <0x00010000 0x000F0000>;
|
||||
};
|
||||
partition@220000 {
|
||||
partition@100000 {
|
||||
label = "large";
|
||||
reg = <0x00100000 0x00300000>;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue