audit: bump version to 2.7
[buildroot-gz.git] / board / via / imx6_vab820 / genimage.cfg
blob54acaa791bd39d8152395cf5c2b235e3ad58a951
1 # Minimal SD card image for the VIA VAB-820 / AMOS-820
3 # The SD card must have at least 1 MB free at the beginning.
4 # U-Boot is added before the filesystem partitions as is.
5 # A FAT boot partition and an Ext4 root filesystem partition are required.
7 image boot.vfat {
8   vfat {
9     files = {
10       "imx6q-vab820.dtb",
11       "uImage"
12     }
13   }
14   size = 10M
17 image sdcard.img {
18   hdimage {
19   }
21   partition u-boot {
22     in-partition-table = "no"
23     image = "u-boot.imx"
24     offset = 1024
25   }
27   partition boot {
28     partition-type = 0xC
29     bootable = "true"
30     image = "boot.vfat"
31   }
33   partition rootfs {
34     partition-type = 0x83
35     image = "rootfs.ext4"
36     size = 512M
37   }