1# Minimal microSD card image for Grinn's chiliBoard 2# 3 4image boot.vfat { 5 vfat { 6 files = { 7 "MLO", 8 "u-boot.img", 9 "am335x-chiliboard.dtb", 10 "zImage" 11 } 12 } 13 14 size = 16M 15} 16 17image sdcard.img { 18 hdimage { 19 } 20 21 partition u-boot { 22 partition-type = 0xC 23 bootable = "true" 24 image = "boot.vfat" 25 offset = 1M 26 } 27 28 partition rootfs { 29 partition-type = 0x83 30 image = "rootfs.ext4" 31 } 32} 33