u-boot-dey: ccimx8m: remove soc_type generation on boot script

On these boot scripts, this variable is not used, so we can remove it.
Besides, it's generated by U-Boot code.

Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
Hector Palacios 2021-05-19 12:34:38 +02:00
parent a7d0ba8b38
commit 71e96e84c4
2 changed files with 0 additions and 10 deletions

View File

@ -6,11 +6,6 @@
setenv ORIG_overlays ${overlays} setenv ORIG_overlays ${overlays}
setenv ORIG_extra_bootargs ${extra_bootargs} setenv ORIG_extra_bootargs ${extra_bootargs}
# Set SOC type to "imx8mm" if not already defined by U-Boot
if test ! -n "${soc_type}"; then
setenv soc_type "imx8mm"
fi
# #
# Determine overlays to apply depending on the hardware capabilities # Determine overlays to apply depending on the hardware capabilities
# described by the HWID, SOM version, and carrier board version. # described by the HWID, SOM version, and carrier board version.

View File

@ -6,11 +6,6 @@
setenv ORIG_overlays ${overlays} setenv ORIG_overlays ${overlays}
setenv ORIG_extra_bootargs ${extra_bootargs} setenv ORIG_extra_bootargs ${extra_bootargs}
# Set SOC type to "imx8mn" if not already defined by U-Boot
if test ! -n "${soc_type}"; then
setenv soc_type "imx8mn"
fi
# #
# Determine overlays to apply depending on the hardware capabilities # Determine overlays to apply depending on the hardware capabilities
# described by the HWID, SOM version, and carrier board version. # described by the HWID, SOM version, and carrier board version.