[oe-commits] Juro Bystricky : boot-direct.bbclass: Add support for VDI images

git at git.openembedded.org git at git.openembedded.org
Thu Jun 11 23:00:49 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: 605dd9f8eb719d0aa278c8ec892e62214cdcfddc
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=605dd9f8eb719d0aa278c8ec892e62214cdcfddc

Author: Juro Bystricky <juro.bystricky at intel.com>
Date:   Wed Jun  3 11:07:27 2015 -0700

boot-direct.bbclass: Add support for VDI images

Same treatment for both  VMDK and VDI images.

Signed-off-by: Juro Bystricky <juro.bystricky at intel.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/classes/boot-directdisk.bbclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/classes/boot-directdisk.bbclass b/meta/classes/boot-directdisk.bbclass
index 44f738b..c576523 100644
--- a/meta/classes/boot-directdisk.bbclass
+++ b/meta/classes/boot-directdisk.bbclass
@@ -63,7 +63,7 @@ DISK_SIGNATURE ?= "${DISK_SIGNATURE_GENERATED}"
 SYSLINUX_ROOT ?= "root=/dev/sda2"
 SYSLINUX_TIMEOUT ?= "10"
 
-IS_VMDK = '${@bb.utils.contains("IMAGE_FSTYPES", "vmdk", "true", "false", d)}'
+IS_VM = '${@bb.utils.contains_any("IMAGE_FSTYPES", ["vmdk" ,"vdi"], "true", "false", d)}'
 
 boot_direct_populate() {
 	dest=$1
@@ -101,7 +101,7 @@ build_boot_dd() {
 		efi_hddimg_populate $HDDDIR
 	fi
 
-	if [ "${IS_VMDK}" = "true" ]; then
+	if [ "${IS_VM}" = "true" ]; then
 		if [ "x${AUTO_SYSLINUXMENU}" = "x1" ] ; then
 			install -m 0644 ${STAGING_DIR}/${MACHINE}/usr/share/syslinux/vesamenu.c32 $HDDDIR/${SYSLINUXDIR}/
 			if [ "x${SYSLINUX_SPLASH}" != "x" ] ; then



More information about the Openembedded-commits mailing list