blob: 27f9a797e04aa38d4c19ecc424ad9aacd23b8c8a (
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
29
30
31
32
33
34
|
image sdcard.img {
hdimage {
}
partition loader1 {
in-partition-table = "no"
image = "idbloader.img"
offset = 32K
}
partition loader2 {
in-partition-table = "no"
image = "u-boot.itb"
offset = 8M
}
partition root1 {
partition-type = 0x83
bootable = "true"
image = "rootfs1.ext"
size = 64M
}
partition root2 {
partition-type = 0x83
image = "rootfs2.ext"
size = 64M
}
partition cfgfs {
partition-type = 0x88
image = "cfgfs.img"
}
}
|