rabbitmq-server: new package
[buildroot-gz.git] / board / grinn / liteboard / genimage.cfg
blobcbce2db5856b8f4e1f036793b962bcafc9b73a14
1 # Minimal microSD card image for Grinn's liteBoard
3 # We mimic the .sdcard Freescale's image format for i.MX6UL:
4 # * the microSD card must have 1 kB free space at the beginning,
5 # * SPL is dumped as is,
6 # * U-Boot is dumped at 69K offset, as configured in SPL
7 # * a FAT partition at offset 8 MB is containing zImage and dtbs,
8 # * a single root filesystem partition is required (Ext4 in this case).
11 image boot.vfat {
12   vfat {
13     files = {
14       "imx6ul-liteboard.dtb",
15       "zImage"
16     }
17   }
18   size = 16M
21 image sdcard.img {
22   hdimage {
23   }
25   partition SPL {
26     in-partition-table = "no"
27     image = "SPL"
28     offset = 1K
29   }
31   partition u-boot {
32     in-partition-table = "no"
33     image = "u-boot.img"
34     offset = 69K
35   }
37   partition boot {
38     partition-type = 0xC
39     bootable = "true"
40     image = "boot.vfat"
41     offset = 8M
42   }
44   partition rootfs {
45     partition-type = 0x83
46     image = "rootfs.ext4"
47   }