summaryrefslogtreecommitdiffstats
path: root/meta/classes/image_types.bbclass
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@intel.com>2015-09-24 16:53:10 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-28 12:00:21 +0100
commit5f371e5a0b1039c2b16842c053ee6df6551f59b6 (patch)
tree5513af2615d2f8d94e514a65ddb2b85bfd6de8be /meta/classes/image_types.bbclass
parentca52ca044ecb7f20707eca07b37c57e1055d14a8 (diff)
downloadpoky-5f371e5a0b1039c2b16842c053ee6df6551f59b6.tar.gz
image types: add hdddirect
When image-vm.bbclass was introduced, it indirectly also introduced a ".hdddirect" image type based on boot-directdisk.bbclass. However, one could only get that image when also enabling at least one of the virtual machine images. The .hdddirect images are useful by themselves. By registering image-vm.bbclass as implementation of it, it becomes possible to select them with: IMAGE_FSTYPES = "hdddirect" (From OE-Core rev: e3ff509091cbbfdef851f8a3c9e31c7b76d37e89) Signed-off-by: Patrick Ohly <patrick.ohly@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image_types.bbclass')
-rw-r--r--meta/classes/image_types.bbclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index afa2e8eb8f..50369197c5 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -13,7 +13,7 @@ def imagetypes_getdepends(d):
13 deps = [] 13 deps = []
14 ctypes = d.getVar('COMPRESSIONTYPES', True).split() 14 ctypes = d.getVar('COMPRESSIONTYPES', True).split()
15 for type in (d.getVar('IMAGE_FSTYPES', True) or "").split(): 15 for type in (d.getVar('IMAGE_FSTYPES', True) or "").split():
16 if type in ["vmdk", "vdi", "qcow2", "live", "iso", "hddimg"]: 16 if type in ["vmdk", "vdi", "qcow2", "hdddirect", "live", "iso", "hddimg"]:
17 type = "ext4" 17 type = "ext4"
18 basetype = type 18 basetype = type
19 for ctype in ctypes: 19 for ctype in ctypes:
@@ -227,6 +227,7 @@ IMAGE_TYPES = " \
227 vmdk \ 227 vmdk \
228 vdi \ 228 vdi \
229 qcow2 \ 229 qcow2 \
230 hdddirect \
230 elf \ 231 elf \
231 wic wic.gz wic.bz2 wic.lzma \ 232 wic wic.gz wic.bz2 wic.lzma \
232" 233"
@@ -254,7 +255,7 @@ DEPLOYABLE_IMAGE_TYPES ?= "hddimg iso"
254IMAGE_EXTENSION_live = "hddimg iso" 255IMAGE_EXTENSION_live = "hddimg iso"
255 256
256# The IMAGE_TYPES_MASKED variable will be used to mask out from the IMAGE_FSTYPES, 257# The IMAGE_TYPES_MASKED variable will be used to mask out from the IMAGE_FSTYPES,
257# images that will not be built at do_rootfs time: vmdk, vdi, qcow2, hddimg, iso, etc. 258# images that will not be built at do_rootfs time: vmdk, vdi, qcow2, hdddirect, hddimg, iso, etc.
258IMAGE_TYPES_MASKED ?= "" 259IMAGE_TYPES_MASKED ?= ""
259 260
260# The WICVARS variable is used to define list of bitbake variables used in wic code 261# The WICVARS variable is used to define list of bitbake variables used in wic code