c892e9457a
U-Boot 2020.10 no longer provides boot command in default environment for Udoo Quad/Dual board. Boot script needs to be added to the image. In order to keep using common infrastructure for freescale boards, move boot files to root filesystem and add boot script there. Also switch Udoo Neo board to common freescale infrastructure to simplify maintenance. Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
8 lines
260 B
Plaintext
8 lines
260 B
Plaintext
setenv finduuid "part uuid mmc 0:1 uuid"
|
|
run finduuid
|
|
run findfdt
|
|
setenv bootargs "console=${console} root=PARTUUID=${uuid} rootwait rootfstype=ext4"
|
|
load mmc 0:1 ${fdt_addr} boot/${fdtfile}
|
|
load mmc 0:1 ${loadaddr} boot/zImage
|
|
bootz ${loadaddr} - ${fdt_addr}
|