python-pathvalidate: bump version to 0.14.1
[buildroot-gz.git] / board / udoo / neo / genimage.cfg
blob46209120f0b0a1b4b4c59c9a3b8b28302483cd47
1 # Minimal SD card image for the MX6SX Udoo Neo board
3 # The SD card must have at least 1 MB free at the beginning.
4 # U-Boot and its environment are dumped as is.
5 # A single root filesystem partition is required (Ext4 in this case).
7 # For details about the layout, see:
8 # http://wiki.wandboard.org/index.php/Boot-process
10 image sdcard.img {
11   hdimage {
12   }
14   partition spl {
15     in-partition-table = "no"
16     image = "SPL"
17     offset = 1K
18   }
20   partition u-boot {
21     in-partition-table = "no"
22     image = "u-boot.img"
23     offset = 69K
24   }
26   partition rootfs {
27     partition-type = 0x83
28     image = "rootfs.ext4"
29     offset = 1M
30     size = 512M
31   }