Message ID | 20250318104853.1442703-2-pascal.weisser.ext@karlstorz.com |
---|---|
State | New |
Headers | show |
Series | Resolve YOCTO #14520 and YOCTO #15525. | expand |
diff --git a/meta/classes-recipe/qemuboot.bbclass b/meta/classes-recipe/qemuboot.bbclass index 0f80c60ab5..895fd38d68 100644 --- a/meta/classes-recipe/qemuboot.bbclass +++ b/meta/classes-recipe/qemuboot.bbclass @@ -129,8 +129,7 @@ addtask do_write_qemuboot_conf after do_rootfs before do_image def qemuboot_vars(d): build_vars = ['MACHINE', 'TUNE_ARCH', 'DEPLOY_DIR_IMAGE', - 'KERNEL_IMAGETYPE', 'KERNEL_IMAGE_NAME', - 'KERNEL_IMAGE_BIN_EXT', 'IMAGE_NAME', 'IMAGE_LINK_NAME', + 'KERNEL_IMAGETYPE', 'IMAGE_NAME', 'IMAGE_LINK_NAME', 'STAGING_DIR_NATIVE', 'STAGING_BINDIR_NATIVE', 'STAGING_DIR_HOST', 'SERIAL_CONSOLES', 'UNINATIVE_LOADER'] return build_vars + [k for k in d.keys() if k.startswith('QB_')]
This reverts commit f8b3975a9ce36ea7af5fd76243a823da2842415b. It was the wrong fix for YOCTO 15525 since the variables KERNEL_IMAGE_NAME and KERNEL_IMAGE_BIN_EXT have the wrong values in an image recipe. Additionally, new QB_ prefixed variables were introduced in the resulting configuration file which had no meaning. Signed-off-by: Weisser, Pascal <pascal.weisser.ext@karlstorz.com> --- meta/classes-recipe/qemuboot.bbclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)