From 2b56d671d2f0ef22786c97e29e1215eb80c94490 Mon Sep 17 00:00:00 2001 From: Juro Bystricky Date: Tue, 11 Aug 2015 12:02:42 -0700 Subject: IMAGES_FSTYPES: default to EXT4 The following IMAGES_FSTYPES defaulted to ext3: "vmdk", "vdi", "qcow2", "live", "iso", "hddimg" This patch changes the default for those IMAGES_FSTYPES to ext4 in order to bring the images more in line with other BSPs. Besides improvements in performance and reliability ext4 provides additional functionality as well (option to turn off the journaling, dynamic resizing of VDI volumes etc.). Signed-off-by: Juro Bystricky Signed-off-by: Richard Purdie --- meta/lib/oe/image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/lib/oe/image.py') diff --git a/meta/lib/oe/image.py b/meta/lib/oe/image.py index 40f61515eb..699c30fa2b 100644 --- a/meta/lib/oe/image.py +++ b/meta/lib/oe/image.py @@ -76,8 +76,8 @@ class ImageDepGraph(object): def _image_base_type(self, type): ctypes = self.d.getVar('COMPRESSIONTYPES', True).split() - if type in ["vmdk", "vdi", "live", "iso", "hddimg"]: - type = "ext3" + if type in ["vmdk", "vdi", "qcow2", "live", "iso", "hddimg"]: + type = "ext4" basetype = type for ctype in ctypes: if type.endswith("." + ctype): -- cgit v1.2.3