From patchwork Tue Mar 13 07:58:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [CONSOLIDATED, PULL, 14/23] image_types: ensure .rootfs.ext3 is created before vmdk is created. Date: Tue, 13 Mar 2012 07:58:48 -0000 From: Saul Wold X-Patchwork-Id: 23105 Message-Id: <53c38b9b030f3a2aa3f48baf84914596b46027c6.1331589797.git.sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org From: Dexuan Cui In the case of self-hosted-image.bb, IMAGE_FSTYPES = "vmdk", so the variables alltypes and subimages don't contain ext3, and .rootfs.ext3 won't be created, and finally the generated .hddimg and .vmdk don't have an actual rootfs -- the size of the .vmdk file is only about 9MB. [YOCTO #2067] Signed-off-by: Dexuan Cui --- meta/classes/image_types.bbclass | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index 8b82018..e92f519 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass @@ -26,13 +26,19 @@ def get_imagecmds(d): # Live and VMDK images will be processed via inheriting # bbclass and does not get processed here. # vmdk depend on live images also depend on ext3 so ensure its present + # Note: we need to ensure ext3 is in alltypes, otherwise, subimages may + # not contain ext3 and the .rootfs.ext3 file won't be created. if "vmdk" in types: if "ext3" not in types: types.append("ext3") + if "ext3" not in alltypes: + alltypes.append("ext3") types.remove("vmdk") if "live" in types: if "ext3" not in types: types.append("ext3") + if "ext3" not in alltypes: + alltypes.append("ext3") types.remove("live") if d.getVar('IMAGE_LINK_NAME', True):