package/snappy: add .hash file
[buildroot-gz.git] / board / freescale / imx53loco / genimage.cfg
blobb56c1687ed13f9f850466a06e89bb436ca46d9d9
1 # Minimal microSD card image for the Freescale's i.MX53 QSB board
3 # We mimic the .sdcard Freescale's image format for i.MX53:
4 # * the microSD 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 and dtbs,
7 # * a single root filesystem partition is required (Ext4 in this case).
10 image boot.vfat {
11   vfat {
12     files = {
13       "imx53-qsb.dtb",
14       "imx53-qsrb.dtb",
15       "zImage"
16     }
17   }
18   size = 16M
21 image sdcard.img {
22   hdimage {
23   }
25   partition u-boot {
26     in-partition-table = "no"
27     image = "u-boot.imx"
28     offset = 1024
29   }
31   partition boot {
32     partition-type = 0xC
33     bootable = "true"
34     image = "boot.vfat"
35     offset = 8M
36   }
38   partition rootfs {
39     partition-type = 0x83
40     image = "rootfs.ext4"
41   }