From e45f074b792a43aa2fd84a5a3f0e20bf1d88ad7e Mon Sep 17 00:00:00 2001 From: Randy Witt Date: Wed, 18 Jan 2017 10:31:50 -0800 Subject: image-container.bbclass: Add the "container" IMAGE_FSTYPES The "container" fstype does very little other than pick tar.bz2 as the actual image type and disable installation of ROOTFS_BOOTSTRAP_INSTALL. [YOCTO #9502] Signed-off-by: Randy Witt Signed-off-by: Ross Burton --- meta/classes/image.bbclass | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/classes/image.bbclass') diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 5c9dc62861..127e62d5d9 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -142,6 +142,9 @@ inherit ${IMAGE_TYPE_live} IMAGE_TYPE_vm = '${@bb.utils.contains_any("IMAGE_FSTYPES", ["vmdk", "vdi", "qcow2", "hdddirect"], "image-vm", "", d)}' inherit ${IMAGE_TYPE_vm} +IMAGE_TYPE_container = '${@bb.utils.contains("IMAGE_FSTYPES", "container", "image-container", "", d)}' +inherit ${IMAGE_TYPE_container} + def build_uboot(d): if 'u-boot' in (d.getVar('IMAGE_FSTYPES') or ''): return "image_types_uboot" -- cgit v1.2.3