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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
| image boot.vfat {
| vfat {
| files = {
| "zImage",
| "socfpga_cyclone5_socrates.dtb"
| }
| }
| size = 8M
| }
|
| image uboot.img {
| hdimage {
| partition-table = "no"
| }
|
| partition spl {
| in-partition-table = "no"
| image = "u-boot-spl.bin.crc"
| offset = 0
| size = 64k
| }
|
| partition uboot-full {
| in-partition-table = "no"
| image = "u-boot.img"
| offset = 256k
| }
|
| size = 1M
| }
|
| image sdcard.img {
| hdimage {
| }
|
| partition uboot-env {
| in-partition-table = "no"
| image = "uboot-env.bin"
| offset = 17408 # 512 * 34 -> just after gpt
| }
|
| partition boot {
| partition-type = 0xc
| bootable = "true"
| image = "boot.vfat"
| }
|
| partition uboot {
| partition-type = 0xa2
| image = "uboot.img"
| }
|
| partition rootfs {
| partition-type = 0x83
| image = "rootfs.ext2"
| size = 500M
| }
| }
|
|