1image boot.vfat { 2 vfat { 3 files = { 4 "boot.bin", 5 "u-boot.bin", 6 "atf-uboot.ub", 7 "system.dtb", 8 "Image" 9 } 10 } 11 12 size = 32M 13} 14 15image sdcard.img { 16 hdimage { 17 } 18 19 partition boot { 20 partition-type = 0xC 21 bootable = "true" 22 image = "boot.vfat" 23 } 24 25 partition rootfs { 26 partition-type = 0x83 27 image = "rootfs.ext4" 28 } 29} 30