phycore_imx93: include common overlays.env

Include the common overlays env file for phycore_imx93.
The common overlays env file supports disabling loading overlays by
setting the no_overlays variable.

Signed-off-by: Benjamin Hahn <B.Hahn@phytec.de>
Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
Reviewed-by: Wadim Egorov <w.egorov@phytec.de>
This commit is contained in:
Benjamin Hahn
2024-07-22 13:47:57 -06:00
committed by Tom Rini
parent 0ff9141fb8
commit 95ab7372f1
+2 -23
View File
@@ -1,5 +1,7 @@
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
#include <env/phytec/overlays.env>
image=Image
console=ttyLP0
fdt_addr=0x83000000
@@ -7,8 +9,6 @@ fdto_addr=0x830c0000
bootenv_addr=0x83500000
fdt_file=CONFIG_DEFAULT_FDT_FILE
ip_dyn=yes
bootenv=bootenv.txt
mmc_load_bootenv=fatload mmc ${mmcdev}:${mmcpart} ${bootenv_addr} ${bootenv}
mmcdev=CONFIG_SYS_MMC_ENV_DEV
mmcpart=1
mmcroot=2
@@ -17,16 +17,6 @@ mmcargs=setenv bootargs console=${console},${baudrate} earlycon
root=/dev/mmcblk${mmcdev}p${mmcroot} ${raucargs} rootwait rw
loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}
loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}
mmc_load_overlay=fatload mmc ${mmcdev}:${mmcpart} ${fdto_addr} ${overlay}
mmc_apply_overlays=
fdt address ${fdt_addr};
for overlay in ${overlays};
do;
if run mmc_load_overlay; then
fdt resize ${filesize};
fdt apply ${fdto_addr};
fi;
done;
mmcboot=
echo Booting from mmc ...;
if run mmc_load_bootenv; then
@@ -42,17 +32,6 @@ mmcboot=
nfsroot=/nfs
netargs=setenv bootargs console=${console},${baudrate} earlycon
root=/dev/nfs ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp
net_load_bootenv=${get_cmd} ${bootenv_addr} ${bootenv}
net_load_overlay=${get_cmd} ${fdto_addr} ${overlay}
net_apply_overlays=
fdt address ${fdt_addr};
for overlay in ${overlays};
do;
if run net_load_overlay; then
fdt resize ${filesize};
fdt apply ${fdto_addr};
fi;
done;
netboot=
echo Booting from net ...;
run netargs;