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/classes/image_types.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes/image_types.bbclass') diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index cc789fc27f..35ceb7beaf 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass @@ -14,7 +14,7 @@ def imagetypes_getdepends(d): ctypes = d.getVar('COMPRESSIONTYPES', True).split() for type in (d.getVar('IMAGE_FSTYPES', True) or "").split(): if type in ["vmdk", "vdi", "qcow2", "live", "iso", "hddimg"]: - type = "ext3" + type = "ext4" basetype = type for ctype in ctypes: if type.endswith("." + ctype): -- cgit 1.2.3-korg