9b15e3a2b7
Upgrade U-Boot version to 2016.07 and make proper use of U-Boot distro configuration features. Provide a boot.scr binary script that is one of the standard ways to pass a U-Boot script with distro features enabled. With this method the uboot-env.txt file is no longer needed, so it is removed. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 lines
264 B
Plaintext
8 lines
264 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/${fdtfile}
|
|
load mmc 0:1 ${loadaddr} boot/zImage
|
|
bootz ${loadaddr} - ${fdt_addr}
|