linux: bump default to version 4.8.4
[buildroot-gz.git] / board / warp7 / genimage.cfg
blob6d963acd5d2b636c58d499e23302c7996ddb50d4
1 # Minimal eMMC image for the Warp board
3 # We mimic the .sdcard Freescale's image format for i.MX7S:
4 # * the eMMC 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       "imx7s-warp.dtb",
14       "zImage"
15     }
16   }
17   size = 16M
20 image emmc.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   }