summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/image.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/image.py')
-rw-r--r--meta/lib/oe/image.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/image.py b/meta/lib/oe/image.py
index 0ce303d570..40f61515eb 100644
--- a/meta/lib/oe/image.py
+++ b/meta/lib/oe/image.py
@@ -66,7 +66,7 @@ class ImageDepGraph(object):
66 return graph 66 return graph
67 67
68 def _clean_graph(self): 68 def _clean_graph(self):
69 # Live and VMDK images will be processed via inheriting 69 # Live and VMDK/VDI images will be processed via inheriting
70 # bbclass and does not get processed here. Remove them from the fstypes 70 # bbclass and does not get processed here. Remove them from the fstypes
71 # graph. Their dependencies are already added, so no worries here. 71 # graph. Their dependencies are already added, so no worries here.
72 remove_list = (self.d.getVar('IMAGE_TYPES_MASKED', True) or "").split() 72 remove_list = (self.d.getVar('IMAGE_TYPES_MASKED', True) or "").split()
@@ -76,7 +76,7 @@ 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", "live", "iso", "hddimg"]: 79 if type in ["vmdk", "vdi", "live", "iso", "hddimg"]:
80 type = "ext3" 80 type = "ext3"
81 basetype = type 81 basetype = type
82 for ctype in ctypes: 82 for ctype in ctypes: