From 9e8522aeb5aaa5a2f57d4c291ab8e301be440fc4 Mon Sep 17 00:00:00 2001 From: "niko.mauno@vaisala.com" Date: Thu, 10 Sep 2020 16:17:51 +0000 Subject: dm-verity-image-initramfs: Bind at do_image instead Bind custom actions in this image recipe in do_image() rather than do_rootfs(), which can help shaving even dozens of seconds from duration of 'bitbake ' command re-execution. Signed-off-by: Niko Mauno Signed-off-by: Armin Kuster (cherry picked from commit 03fdaf2f0464b28ab69114330a543b3c64c19a5d) --- recipes-core/images/dm-verity-image-initramfs.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes-core/images/dm-verity-image-initramfs.bb b/recipes-core/images/dm-verity-image-initramfs.bb index 60e9892..8dd8543 100644 --- a/recipes-core/images/dm-verity-image-initramfs.bb +++ b/recipes-core/images/dm-verity-image-initramfs.bb @@ -14,10 +14,10 @@ PACKAGE_INSTALL = " \ " # Can we somehow inspect reverse dependencies to avoid these variables? -do_rootfs[depends] += "${DM_VERITY_IMAGE}:do_image_${DM_VERITY_IMAGE_TYPE}" +do_image[depends] += "${DM_VERITY_IMAGE}:do_image_${DM_VERITY_IMAGE_TYPE}" # Ensure dm-verity.env is updated also when rebuilding DM_VERITY_IMAGE -do_rootfs[nostamp] = "1" +do_image[nostamp] = "1" IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}" @@ -26,4 +26,4 @@ inherit core-image deploy_verity_hash() { install -D -m 0644 ${DEPLOY_DIR_IMAGE}/${DM_VERITY_IMAGE}-${MACHINE}.${DM_VERITY_IMAGE_TYPE}.verity.env ${IMAGE_ROOTFS}/${datadir}/dm-verity.env } -ROOTFS_POSTPROCESS_COMMAND += "deploy_verity_hash;" +IMAGE_PREPROCESS_COMMAND += "deploy_verity_hash;" -- cgit v1.2.3-54-g00ecf