1# Image for SD card boot on Microchip SAMA5D2 ICP (Industrial Connectivity Platform) 2# 3image boot.vfat { 4 vfat { 5 files = { 6 "zImage", 7 "at91-sama5d2_icp.dtb", 8 "boot.bin", 9 "u-boot.bin" 10 } 11 } 12 13 size = 16M 14} 15 16image sdcard.img { 17 hdimage { 18 } 19 20 partition boot { 21 partition-type = 0xC 22 bootable = "true" 23 image = "boot.vfat" 24 offset = 1M 25 } 26 27 partition rootfs { 28 partition-type = 0x83 29 image = "rootfs.ext4" 30 size = 512M 31 } 32} 33