python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / board / freescale / common / imx / genimage.cfg.template
blobacce058b2afa957358694657a48e2a600941bd7d
1 # Minimal SD card image for the Freescale boards Template
3 # We mimic the .sdcard Freescale's image format:
4 # * the SD card must have 1 kB free space at the beginning,
5 # * U-Boot is dumped as is,
6 # * a FAT partition at offset 8 MB is containing zImage/uImage and DTB files
7 # * a single root filesystem partition is required (ext2, ext3 or ext4)
10 image boot.vfat {
11   vfat {
12     files = {
13       %FILES%
14     }
15   }
16   size = 16M
19 image sdcard.img {
20   hdimage {
21   }
23   partition u-boot {
24     in-partition-table = "no"
25     image = "u-boot.imx"
26     offset = 1024
27   }
29   partition boot {
30     partition-type = 0xC
31     bootable = "true"
32     image = "boot.vfat"
33     offset = 8M
34   }
36   partition rootfs {
37     partition-type = 0x83
38     image = "rootfs.ext2"
39   }