From ec7eded4cb484536e47ce5a4c9395d5533eec097 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Wed, 5 Sep 2018 14:05:29 +0200 Subject: [PATCH] ccimx8x: override SDIMG_BOOTLOADER instead of UBOOT_SYMLINK Since we were modifying UBOOT_SYMLINK for the ccimx8x, we were generating u-boot symlinks with imx-boot names. This also caused the imx-boot recipe to fail during compilation, because it couldn't find the old UBOOT_SYMLINK that we replaced. Signed-off-by: Gabriel Valcazar --- meta-digi-arm/conf/machine/include/ccimx8x.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-digi-arm/conf/machine/include/ccimx8x.inc b/meta-digi-arm/conf/machine/include/ccimx8x.inc index da33f34ba..7424d1e97 100644 --- a/meta-digi-arm/conf/machine/include/ccimx8x.inc +++ b/meta-digi-arm/conf/machine/include/ccimx8x.inc @@ -17,7 +17,7 @@ EXTRA_IMAGEDEPENDS = "imx-boot" IMAGE_BOOTLOADER = "imx-boot" # BOOTLOADER_SEEK is 33 for step A of the silicon and 32 for step B BOOTLOADER_SEEK = "33" -UBOOT_SYMLINK = "imx-boot-${MACHINE}.bin" +SDIMG_BOOTLOADER = "${DEPLOY_DIR_IMAGE}/imx-boot-${MACHINE}.bin" # Linux kernel configuration KERNEL_DEFCONFIG ?= "arch/arm64/configs/ccimx8x_defconfig"