summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2021-09-10 09:25:04 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2021-09-10 10:19:13 +0200
commit4a7ccaf261a5991c9019d19f01b6cc6cfabd7b55 (patch)
treed77171dc4918d15556b5837b72972cd9ae57ebe2
parent6a8d4f758d0331ee303517618f8368ef52c9d1c7 (diff)
apalis-imx8: fix booting from emmc
As the ${variant} variable includes the leading dash adding another one leads to the following: Apalis iMX8 TEZI # echo $fdtfile imx8qm-apalis--v1.1-eval.dtb Fix this by removing that extra dash. Note that this does not change anything for the recovery mode use case. There another fix to the distro boot script in meta-toradex-tezi is required. Fixes: commit f499632b31f8 ("apalis-imx8: construct fdtfile dynamically") Related-to: TEI-934 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
-rw-r--r--configs/apalis-imx8_tezi_defconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/apalis-imx8_tezi_defconfig b/configs/apalis-imx8_tezi_defconfig
index d2ca3028ce..c3ce6570b3 100644
--- a/configs/apalis-imx8_tezi_defconfig
+++ b/configs/apalis-imx8_tezi_defconfig
@@ -18,7 +18,7 @@ CONFIG_FIT=y
CONFIG_FIT_VERBOSE=y
CONFIG_OF_SYSTEM_SETUP=y
CONFIG_USE_PREBOOT=y
-CONFIG_PREBOOT="setenv fdtfile ${soc}-apalis-${variant}-${fdt_board}.dtb"
+CONFIG_PREBOOT="setenv fdtfile ${soc}-apalis${variant}-${fdt_board}.dtb"
CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/toradex/apalis-imx8/apalis-imx8-imximage.cfg"
CONFIG_BOOTDELAY=1
CONFIG_LOG=y