From e556e32c8449fc324481d0d74682f5e04a191477 Mon Sep 17 00:00:00 2001 From: Ricardo Salveti Date: Wed, 24 Jul 2019 18:46:45 -0300 Subject: initramfs-ostree-image: unset EXTRA_IMAGEDEPENDS to avoid extra dependencies It is common for machine configurations to set EXTRA_IMAGEDEPENDS, which can end up causing circular dependencies when building the initramfs image (they are usually only required for the actual rootfs image). Signed-off-by: Ricardo Salveti --- recipes-core/images/initramfs-ostree-image.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes-core/images/initramfs-ostree-image.bb b/recipes-core/images/initramfs-ostree-image.bb index e77499e..b21be1c 100644 --- a/recipes-core/images/initramfs-ostree-image.bb +++ b/recipes-core/images/initramfs-ostree-image.bb @@ -15,6 +15,9 @@ LICENSE = "MIT" IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}" +# Avoid circular dependencies +EXTRA_IMAGEDEPENDS = "" + inherit core-image IMAGE_ROOTFS_SIZE = "8192" -- cgit v1.2.3-54-g00ecf