mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-13 21:36:57 +00:00
env: Make common bootcmd across all k3 devices
This is helpful to go forward with distro_bootcmd as default boot. Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
This commit is contained in:
parent
913cea388d
commit
4ae1a2470c
1 changed files with 10 additions and 1 deletions
|
@ -22,4 +22,13 @@ get_overlaystring=
|
|||
done;
|
||||
get_fit_config=setexpr name_fit_config gsub / _ conf-${fdtfile}
|
||||
run_fit=run get_fit_config; bootm ${addr_fit}#${name_fit_config}${overlaystring}
|
||||
|
||||
bootcmd_ti_mmc=
|
||||
run findfdt; run init_${boot};
|
||||
#if CONFIG_CMD_REMOTEPROC
|
||||
run main_cpsw0_qsgmii_phyinit; run boot_rprocs;
|
||||
#endif
|
||||
if test ${boot_fit} -eq 1;
|
||||
then run get_fit_${boot}; run get_overlaystring; run run_fit;
|
||||
else;
|
||||
run get_kern_${boot}; run get_fdt_${boot}; run get_overlay_${boot}; run run_kern;
|
||||
fi;
|
||||
|
|
Loading…
Add table
Reference in a new issue