package/snappy: add .hash file
[buildroot-gz.git] / board / freescale / imx51evk / genimage.cfg
bloba44ed300ba8026a8f59bc16b03c36f3dbf10009d
1 # Minimal SD card image for the Freescale's i.MX51 EVK board
3 # We mimic the .sdcard Freescale's image format for i.MX51:
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       "imx51-babbage.dtb",
14       "zImage"
15     }
16   }
17   size = 16M
20 image sdcard.img {
21   hdimage {
22   }
24   partition u-boot {
25     in-partition-table = "no"
26     image = "u-boot.imx"
27     offset = 1024
28   }
30   partition boot {
31     partition-type = 0xC
32     bootable = "true"
33     image = "boot.vfat"
34     offset = 8M
35   }
37   partition rootfs {
38     partition-type = 0x83
39     image = "rootfs.ext4"
40   }