ddrescue: fix uclibc compile
[buildroot-gz.git] / board / udoo / mx6qdl / genimage.cfg
blob4361d540c7ea1093fc9c982fbce147869304b3de
1 # Minimal microSD card image for Udoo MX6Q/DL boards
3 # We mimic the .sdcard Freescale's image format for i.MX6:
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 16 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                         "imx6q-udoo.dtb",
14                         "imx6dl-udoo.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 = 16M
42         }
44         partition rootfs {
45                 partition-type = 0x83
46                 image = "rootfs.ext4"
47         }