diff options
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/image.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): |