1image boot.vfat { 2 vfat { 3 file zImage { 4 image = "zImage" 5 } 6 7 file socfpga_cyclone5_de0_nano_soc.dtb { 8 image = "socfpga_cyclone5_de0_nano_soc.dtb" 9 } 10 11 file barebox.bin { 12 image = "barebox-socfpga-de10_nano.img" 13 } 14 15 file barebox.env { 16 image = "barebox-env" 17 } 18 } 19 20 size = 8M 21} 22 23image sdcard.img { 24 hdimage { 25 } 26 27 partition spl { 28 partition-type = 0xa2 29 image = "barebox-socfpga-de10_nano-xload.img" 30 size = 1M 31 } 32 33 partition boot { 34 partition-type = 0xc 35 bootable = "true" 36 image = "boot.vfat" 37 } 38 39 partition rootfs { 40 partition-type = 0x83 41 image = "rootfs.ext2" 42 } 43} 44