1# Image for SD card boot on Atmel at91sam9x5ek boards 2# 3image boot.vfat { 4 vfat { 5 files = { 6 "zImage", 7 "at91sam9g15ek.dtb", 8 "at91sam9g25ek.dtb", 9 "at91sam9g35ek.dtb", 10 "at91sam9x25ek.dtb", 11 "at91sam9x35ek.dtb", 12 "boot.bin", 13 "u-boot.bin" 14 } 15 16 file uboot.env { 17 image = "uboot-env.bin" 18 } 19 } 20 21 size = 16M 22} 23 24image sdcard.img { 25 hdimage { 26 } 27 28 partition boot { 29 partition-type = 0xC 30 bootable = "true" 31 image = "boot.vfat" 32 offset = 1M 33 } 34 35 partition rootfs { 36 partition-type = 0x83 37 image = "rootfs.ext4" 38 size = 512M 39 } 40} 41