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>
8 lines
265 B
Plaintext
8 lines
265 B
Plaintext
setenv finduuid "part uuid mmc 0:1 uuid"
|
|
run finduuid
|
|
run findfdt
|
|
setenv bootargs "console=ttymxc0,115200 root=PARTUUID=${uuid} rootwait rootfstype=ext4"
|
|
load mmc 0:1 ${fdt_addr} boot/${fdt_file}
|
|
load mmc 0:1 ${loadaddr} boot/zImage
|
|
bootz ${loadaddr} - ${fdt_addr}
|