From 4a371fe6d6097b810034b8b5902cb541bf2d6450 Mon Sep 17 00:00:00 2001 From: Rasmus Villemoes Date: Fri, 19 Apr 2024 23:44:08 +0200 Subject: [PATCH] genimage.bbclass: adapt to bmap-tools -> bmaptool renaming OE-core has renamed this recipe, and attempts to add a PROVIDES compatibility item have been rejected. https://lore.kernel.org/openembedded-core/CANx9H-B4-tEGjC_y0GiFrAeR24Z2PjocVX-=6CRbGBQ+rXytgg@mail.gmail.com/ Signed-off-by: Rasmus Villemoes --- classes-recipe/genimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes-recipe/genimage.bbclass b/classes-recipe/genimage.bbclass index ed423d2..2bbb491 100644 --- a/classes-recipe/genimage.bbclass +++ b/classes-recipe/genimage.bbclass @@ -101,7 +101,7 @@ do_genimage[vardeps] += "GENIMAGE_VARIABLES" do_genimage[depends] += "${@'${GENIMAGE_ROOTFS_IMAGE}:do_image_complete' if '${GENIMAGE_ROOTFS_IMAGE}' else ''}" GENIMAGE_CREATE_BMAP ?= "0" -do_genimage[depends] += "${@'bmap-tools-native:do_populate_sysroot' if d.getVar('GENIMAGE_CREATE_BMAP') == '1' else ''}" +do_genimage[depends] += "${@'bmaptool-native:do_populate_sysroot' if d.getVar('GENIMAGE_CREATE_BMAP') == '1' else ''}" GENIMAGE_TMPDIR = "${WORKDIR}/genimage-tmp" GENIMAGE_ROOTDIR = "${WORKDIR}/root"