diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-07 14:05:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-07 17:51:11 +0100 |
commit | 0a1265f4dd90ad9524005ce91b3d0564ce2215e5 (patch) | |
tree | b0dd7021582b4188a2c0a5795a1320ec6e8ca13c | |
parent | 7b604e6a8f800e779f368244b0fa94c219c93df0 (diff) | |
download | openembedded-core-0a1265f4dd90ad9524005ce91b3d0564ce2215e5.tar.gz openembedded-core-0a1265f4dd90ad9524005ce91b3d0564ce2215e5.tar.bz2 openembedded-core-0a1265f4dd90ad9524005ce91b3d0564ce2215e5.zip |
core-image-tiny-initramfs: Avoid parsing failures
This variable is otherwise unset leading to missing dependency warnings. Give
it the same default as used elsewhere in other recipes.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/images/core-image-tiny-initramfs.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/images/core-image-tiny-initramfs.bb b/meta/recipes-core/images/core-image-tiny-initramfs.bb index d7f97f3a17..0eca6d9944 100644 --- a/meta/recipes-core/images/core-image-tiny-initramfs.bb +++ b/meta/recipes-core/images/core-image-tiny-initramfs.bb @@ -5,6 +5,8 @@ first 'init' program more efficiently. core-image-tiny-initramfs doesn't \ actually generate an image but rather generates boot and rootfs artifacts \ that can subsequently be picked up by external image generation tools such as wic." +VIRTUAL-RUNTIME_dev_manager ?= "busybox-mdev" + PACKAGE_INSTALL = "initramfs-live-boot-tiny packagegroup-core-boot dropbear ${VIRTUAL-RUNTIME_base-utils} ${VIRTUAL-RUNTIME_dev_manager} base-passwd ${ROOTFS_BOOTSTRAP_INSTALL}" # Do not pollute the initrd image with rootfs features |