From 4a7ccaf261a5991c9019d19f01b6cc6cfabd7b55 Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Fri, 10 Sep 2021 09:25:04 +0200 Subject: 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 --- configs/apalis-imx8_tezi_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3