board/csky: fixup gdb instructions in readme.txt
[buildroot-gz.git] / board / solidrun / mx6cubox / genimage.cfg
blob490986ac8674eb93bd7bf27acf946a1204349705
1 # Minimal SD card image for the MX6 Cubox/Hummingboard
3 # U-Boot SPL and u-boot.img are flashed in the first 1MB raw partition.
4 # A single root filesystem partition is used (Ext4 in this case).
7 image sdcard.img {
8         hdimage {
9         }
11         partition spl {
12                 in-partition-table = "no"
13                 image = "SPL"
14                 offset = 1K
15         }
17         partition u-boot {
18                 in-partition-table = "no"
19                 image = "u-boot.img"
20                 offset = 69K
21         }
23         partition rootfs {
24                 partition-type = 0x83
25                 image = "rootfs.ext4"
26                 offset = 1M
27                 size = 512M
28         }