1image boot.vfat { 2 vfat { 3 files = { 4 "MLO", 5 "u-boot.img", 6 "zImage", 7 "am5729-beagleboneai.dtb", 8 "uEnv.txt" 9 } 10 } 11 12 size = 16M 13} 14 15image sdcard.img { 16 hdimage { 17 } 18 19 partition u-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 size = 512M 29 } 30} 31