f2d98f3744
Add support for Solidrun's MX6 Cubox/Hummingboard. For more information about these boards, please check: https://www.solid-run.com/freescale-imx6-family/hummingboard/ https://www.solid-run.com/freescale-imx6-family/cubox-i/ U-Boot is capable of detecting the version of the board in run-time and loads the correct dtb. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
502 B
INI
30 lines
502 B
INI
# Minimal SD card image for the MX6 Cubox/Hummingboard
|
|
#
|
|
# U-Boot SPL and u-boot.img are flashed in the first 1MB raw partition.
|
|
# A single root filesystem partition is used (Ext4 in this case).
|
|
#
|
|
|
|
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"
|
|
offset = 1M
|
|
size = 512M
|
|
}
|
|
}
|