diff options
Diffstat (limited to 'meta/lib/oe/image.py')
-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): | |||
76 | 76 | ||
77 | def _image_base_type(self, type): | 77 | def _image_base_type(self, type): |
78 | ctypes = self.d.getVar('COMPRESSIONTYPES', True).split() | 78 | ctypes = self.d.getVar('COMPRESSIONTYPES', True).split() |
79 | if type in ["vmdk", "vdi", "live", "iso", "hddimg"]: | 79 | if type in ["vmdk", "vdi", "qcow2", "live", "iso", "hddimg"]: |
80 | type = "ext3" | 80 | type = "ext4" |
81 | basetype = type | 81 | basetype = type |
82 | for ctype in ctypes: | 82 | for ctype in ctypes: |
83 | if type.endswith("." + ctype): | 83 | if type.endswith("." + ctype): |