mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-27 12:30:34 -09:00
With the latest U-Boot update, U-Boot now handles this step in the board setup removing the need to set this from a custom boot script. Remove redundant fdt set command from boot script. Signed-off-by: Jamie Gibbons <jamie.gibbons@microchip.com> Signed-off-by: Romain Naour <romain.naour@smile.fr>
16 lines
399 B
Batchfile
16 lines
399 B
Batchfile
# this assumes ${scriptaddr} is already set!!
|
|
|
|
# Try to boot a fitImage from eMMC/SD
|
|
|
|
setenv fdt_high 0xffffffffffffffff
|
|
setenv initrd_high 0xffffffffffffffff
|
|
|
|
load mmc 0:${distro_bootpart} ${scriptaddr} beaglev_fire.itb;
|
|
bootm start ${scriptaddr}#kernel_dtb;
|
|
bootm loados ${scriptaddr};
|
|
# Try to load a ramdisk if available inside fitImage
|
|
bootm ramdisk;
|
|
bootm prep;
|
|
run design_overlays;
|
|
bootm go;
|