blob: ca8639b52f6d24267903623ece926e8d3574ea7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* This file is the label for the bmc primary flash and its partitions */
label = "bmc";
#address-cells = < 1 >;
#size-cells = < 1 >;
u-boot {
reg = < 0 0x60000 >;
label = "u-boot";
};
u-boot-env {
reg = < 0x60000 0x20000 >;
label = "u-boot-env";
};
kernel {
reg = < 0x80000 0x280000 >;
label = "kernel";
};
initramfs {
reg = < 0x300000 0x1c0000 >;
label = "initramfs";
};
rofs {
reg = < 0x4c0000 0x1740000 >;
label = "rofs";
};
rwfs {
reg = < 0x1c00000 0x400000 >;
label = "rwfs";
};
|