board/csky: fixup gdb instructions in readme.txt
[buildroot-gz.git] / board / freescale / common / mxs / genimage.cfg.template
blobe094fb7f2ce6556ea2f08df487f902616b8f0bee
1 # Minimal SD card image for the Freescale MX23/MX28 Template
3 # We mimic the .sdcard Freescale's MX23/MX28 image format:
4 # * u-boot.sb is placed at offset 1M,
5 # * a FAT partition at offset 16 MB is containing zImage/uImage and DTB files
6 # * a single root filesystem partition is required (ext2, ext3 or ext4)
9 image boot.vfat {
10         vfat {
11                 files = {
12                         %FILES%
13                 }
14         }
15         size = 16M
18 image sdcard.img {
19         hdimage {
20         }
22         partition u-boot {
23                 partition-type = 0x53
24                 image = "u-boot.sd"
25                 offset = 1M
26                 size = 16M
27         }
29         partition kernel {
30                 partition-type = 0xC
31                 bootable = "true"
32                 image = "boot.vfat"
33         }
35         partition rootfs {
36                 partition-type = 0x83
37                 image = "rootfs.ext2"
38         }