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
| image sdcard.img {
| hdimage {
| }
|
| partition uboot-spl {
| in-partition-table = "no"
| image = "u-boot-spl.bin"
| offset = 512
| }
|
| partition uboot {
| in-partition-table = "no"
| image = "u-boot.img"
| offset = 14k
| }
|
| partition uboot-env {
| in-partition-table = "no"
| image = "uboot-env.bin"
| offset = 526k
| }
|
| partition rootfs {
| partition-type = 0x83
| image = "rootfs.ext4"
| offset = 2M
| size = 60M
| }
| }
|
|