Message ID | 20250318104853.1442703-4-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 163c4085ee..d51d1c454c 100644 --- a/meta/classes-recipe/qemuboot.bbclass +++ b/meta/classes-recipe/qemuboot.bbclass @@ -122,7 +122,7 @@ QB_KERNEL_CMDLINE_APPEND:append = " swiotlb=0" # This should be kept align with ROOT_VM QB_DRIVE_TYPE ?= "/dev/sd" -inherit image-artifact-names +inherit kernel-artifact-names # Create qemuboot.conf addtask do_write_qemuboot_conf after do_rootfs before do_image_complete
The qemuboot class uses the INITRAMFS_LINK_NAME variable which gets a default value in the kernel-artifact-names class. Since that class inherits from the image-artifact-names class we inherit from the kernel-artifact-names class here, instead. Signed-off-by: Weisser, Pascal <pascal.weisser.ext@karlstorz.com> --- meta/classes-recipe/qemuboot.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)