diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2015-09-24 16:53:10 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-28 12:00:21 +0100 |
commit | 5f371e5a0b1039c2b16842c053ee6df6551f59b6 (patch) | |
tree | 5513af2615d2f8d94e514a65ddb2b85bfd6de8be /meta/classes/image-vm.bbclass | |
parent | ca52ca044ecb7f20707eca07b37c57e1055d14a8 (diff) | |
download | poky-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-vm.bbclass')
-rw-r--r-- | meta/classes/image-vm.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/image-vm.bbclass b/meta/classes/image-vm.bbclass index 0632667084..5ddd1cb274 100644 --- a/meta/classes/image-vm.bbclass +++ b/meta/classes/image-vm.bbclass | |||
@@ -18,7 +18,8 @@ inherit boot-directdisk | |||
18 | IMAGE_TYPEDEP_vmdk = "ext4" | 18 | IMAGE_TYPEDEP_vmdk = "ext4" |
19 | IMAGE_TYPEDEP_vdi = "ext4" | 19 | IMAGE_TYPEDEP_vdi = "ext4" |
20 | IMAGE_TYPEDEP_qcow2 = "ext4" | 20 | IMAGE_TYPEDEP_qcow2 = "ext4" |
21 | IMAGE_TYPES_MASKED += "vmdk vdi qcow2" | 21 | IMAGE_TYPEDEP_hdddirect = "ext4" |
22 | IMAGE_TYPES_MASKED += "vmdk vdi qcow2 hdddirect" | ||
22 | 23 | ||
23 | create_vmdk_image () { | 24 | create_vmdk_image () { |
24 | qemu-img convert -O vmdk ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hdddirect ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.vmdk | 25 | qemu-img convert -O vmdk ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hdddirect ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.vmdk |