c525542253
Add support for mx6sx udoo neo boards. For more information about these boards, please check: http://www.udoo.org/udoo-neo The U-Boot and kernel dts patches will be removed when we bump U-Boot to 2017.01 and kernel to 4.10 version as they have already been sent upstream. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
640 B
INI
32 lines
640 B
INI
# Minimal SD card image for the MX6SX Udoo Neo board
|
|
#
|
|
# The SD card must have at least 1 MB free at the beginning.
|
|
# U-Boot and its environment are dumped as is.
|
|
# A single root filesystem partition is required (Ext4 in this case).
|
|
#
|
|
# For details about the layout, see:
|
|
# http://wiki.wandboard.org/index.php/Boot-process
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition spl {
|
|
in-partition-table = "no"
|
|
image = "SPL"
|
|
offset = 1K
|
|
}
|
|
|
|
partition u-boot {
|
|
in-partition-table = "no"
|
|
image = "u-boot.img"
|
|
offset = 69K
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
size = 512M
|
|
}
|
|
}
|