1image boot.vfat { 2 vfat { 3 files = { 4#BOOT_FILES# 5 } 6 } 7 8 size = 32M 9} 10 11image sdcard.img { 12 hdimage { 13 } 14 15 partition boot { 16 partition-type = 0xC 17 bootable = "true" 18 image = "boot.vfat" 19 } 20 21 partition rootfs { 22 partition-type = 0x83 23 image = "rootfs.ext4" 24 } 25} 26