xref: /OK3568_Linux_fs/buildroot/board/freescale/common/imx/genimage.cfg.template_no_boot_part_spl (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# Minimal SD card image for the Freescale boards Template for SPL Boot
2#
3# We mimic the .sdcard Freescale's image format:
4# * the SD card must have 1 kB free space at the beginning,
5# * SPL is at the offset expected by ROM,
6# * U-Boot is at the offset expected by SPL,
7# * The first partition is expected to be an ext2 and have a /boot directory.
8#
9
10image sdcard.img {
11  hdimage {
12  }
13
14  partition spl {
15    in-partition-table = "no"
16    image = "SPL"
17    offset = 1024
18  }
19
20  partition u-boot {
21    in-partition-table = "no"
22    image = "%UBOOTBIN%"
23    offset = 69K
24  }
25
26  partition rootfs {
27    partition-type = 0x83
28    image = "rootfs.ext2"
29    offset = 8M
30  }
31}
32