From: Wojciech Zmuda <[email protected]> Machines not inheriting zephyr-qemuboot did not have IMGDEPLOYDIR variable set, which is required for building zephyr-kernel-test-all. The build was fine for qemu-xxx machines, but for physical boards it failed somewhere inside python code when .join() got an empty argument incoming from IMGDEPLOYDIR. Move IMGDEPLOYDIR to zephyr class, so it's defined for qemu and non-qemu machines.
Signed-off-by: Wojciech Zmuda <[email protected]> --- classes/zephyr-qemuboot.bbclass | 3 --- classes/zephyr.bbclass | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/classes/zephyr-qemuboot.bbclass b/classes/zephyr-qemuboot.bbclass index 39de3f0..5ac1c86 100644 --- a/classes/zephyr-qemuboot.bbclass +++ b/classes/zephyr-qemuboot.bbclass @@ -11,9 +11,6 @@ IMAGE_LINK_NAME = "${PN}-image-${MACHINE}" # Create a link with "-image-" in the name just to keep runqemu happy QEMU_IMAGE_LINK = "${DEPLOY_DIR_IMAGE}/${PN}-image-${MACHINE}.elf" -# qemuboot writes into IMGDEPLOYDIR, force to write to DEPLOY_DIR_IMAGE -IMGDEPLOYDIR = "${DEPLOY_DIR_IMAGE}" - CLEANFUNCS += "bootconf_clean" python bootconf_clean() { diff --git a/classes/zephyr.bbclass b/classes/zephyr.bbclass index ead762a..6fceb04 100644 --- a/classes/zephyr.bbclass +++ b/classes/zephyr.bbclass @@ -10,6 +10,9 @@ TERMINFO = "${STAGING_DATADIR_NATIVE}/terminfo" KCONFIG_CONFIG_COMMAND ??= "menuconfig" ZEPHYR_BOARD ?= "${MACHINE}" +# qemuboot writes into IMGDEPLOYDIR, force to write to DEPLOY_DIR_IMAGE +IMGDEPLOYDIR = "${DEPLOY_DIR_IMAGE}" + python () { # Translate MACHINE into Zephyr BOARD # Zephyr BOARD is basically our MACHINE, except we must use "-" instead of "_" -- 2.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#51711): https://lists.yoctoproject.org/g/yocto/message/51711 Mute This Topic: https://lists.yoctoproject.org/mt/78857206/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
