From daa53e8f2acf694b47ce8a6538e4fc2073db5247 Mon Sep 17 00:00:00 2001 From: Tom Hochstein Date: Fri, 29 Jul 2022 13:14:24 -0500 Subject: imx6qdlsabre*.conf: Fix u-boot-imx-mfgtool compile error Building u-boot-imx-mfgtool for i.MX 6 SABRE, NXP BSP, fails: ``` | cp: cannot stat '/.../tmp/work/imx6qdlsabresd-fsl-linux-gnueabi/u-boot-imx-mfgtool/2022.04-r0/build/mx6qsabresd_defconfig/u-boot.imx': No such file or directory ``` The failure is because the target `all` is being used. For NXP BSP, the correct target is `u-boot.imx`. Signed-off-by: Tom Hochstein (cherry picked from commit 4c5cd39ba8573e8956e00ff2d270487c88c276a2) --- conf/machine/imx6qdlsabreauto.conf | 2 ++ conf/machine/imx6qdlsabresd.conf | 2 ++ 2 files changed, 4 insertions(+) diff --git a/conf/machine/imx6qdlsabreauto.conf b/conf/machine/imx6qdlsabreauto.conf index 1bc78604..16a061e5 100644 --- a/conf/machine/imx6qdlsabreauto.conf +++ b/conf/machine/imx6qdlsabreauto.conf @@ -45,6 +45,8 @@ UBOOT_CONFIG:pn-u-boot-imx ??= " \ " UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx" UBOOT_SUFFIX:pn-u-boot-imx = "imx" +UBOOT_MAKE_TARGET:pn-u-boot-imx-mfgtool = "u-boot.imx" +UBOOT_SUFFIX:pn-u-boot-imx-mfgtool = "imx" UBOOT_CONFIG[sd] = "${UBOOT_CONFIG_MACHINE_NAME}_defconfig,sdcard" UBOOT_CONFIG[sd-optee] = "${UBOOT_CONFIG_MACHINE_NAME}_optee_defconfig,sdcard" diff --git a/conf/machine/imx6qdlsabresd.conf b/conf/machine/imx6qdlsabresd.conf index 787a2006..62ad478e 100644 --- a/conf/machine/imx6qdlsabresd.conf +++ b/conf/machine/imx6qdlsabresd.conf @@ -54,6 +54,8 @@ UBOOT_CONFIG:pn-u-boot-imx ??= " \ " UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx" UBOOT_SUFFIX:pn-u-boot-imx = "imx" +UBOOT_MAKE_TARGET:pn-u-boot-imx-mfgtool = "u-boot.imx" +UBOOT_SUFFIX:pn-u-boot-imx-mfgtool = "imx" UBOOT_CONFIG[sd] = "${UBOOT_CONFIG_MACHINE_NAME}_defconfig,sdcard" UBOOT_CONFIG[sd-optee] = "${UBOOT_CONFIG_MACHINE_NAME}_optee_defconfig,sdcard" -- cgit v1.2.3-54-g00ecf