1image boot.vfat { 2 vfat { 3 files = { 4 "zImage", 5 "socfpga_cyclone5_socrates.dtb" 6 } 7 } 8 9 size = 8M 10} 11 12image uboot.img { 13 hdimage { 14 partition-table = "no" 15 } 16 17 partition spl { 18 in-partition-table = "no" 19 image = "u-boot-spl.bin.crc" 20 offset = 0 21 size = 64K 22 } 23 24 partition uboot-full { 25 in-partition-table = "no" 26 image = "u-boot.img" 27 offset = 256k 28 } 29 30 size = 1M 31} 32 33image sdcard.img { 34 hdimage { 35 } 36 37 partition uboot-env { 38 in-partition-table = "no" 39 image = "uboot-env.bin" 40 offset = 17K # 512 * 34 -> just after gpt 41 } 42 43 partition boot { 44 partition-type = 0xc 45 bootable = "true" 46 image = "boot.vfat" 47 } 48 49 partition uboot { 50 partition-type = 0xa2 51 image = "uboot.img" 52 } 53 54 partition rootfs { 55 partition-type = 0x83 56 image = "rootfs.ext2" 57 size = 500M 58 } 59} 60