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
| image boot.vfat {
| vfat {
| file zImage {
| image = "zImage"
| }
|
| file socfpga_cyclone5_de0_nano_soc.dtb {
| image = "socfpga_cyclone5_de0_nano_soc.dtb"
| }
|
| file barebox.bin {
| image = "barebox-socfpga-de10_nano.img"
| }
|
| file barebox.env {
| image = "barebox-env"
| }
| }
|
| size = 8M
| }
|
| image sdcard.img {
| hdimage {
| }
|
| partition spl {
| partition-type = 0xa2
| image = "barebox-socfpga-de10_nano-xload.img"
| size = 1M
| }
|
| partition boot {
| partition-type = 0xc
| bootable = "true"
| image = "boot.vfat"
| }
|
| partition rootfs {
| partition-type = 0x83
| image = "rootfs.ext2"
| }
| }
|
|