diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image_types.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index bcb2497997..53af7ca8dc 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass | |||
@@ -17,7 +17,9 @@ def imagetypes_getdepends(d): | |||
17 | 17 | ||
18 | deps = [] | 18 | deps = [] |
19 | ctypes = d.getVar('COMPRESSIONTYPES', True).split() | 19 | ctypes = d.getVar('COMPRESSIONTYPES', True).split() |
20 | for type in (d.getVar('IMAGE_FSTYPES', True) or "").split(): | 20 | fstypes = set((d.getVar('IMAGE_FSTYPES', True) or "").split()) |
21 | fstypes |= set((d.getVar('IMAGE_FSTYPES_DEBUGFS', True) or "").split()) | ||
22 | for type in fstypes: | ||
21 | if type in ["vmdk", "vdi", "qcow2", "hdddirect", "live", "iso", "hddimg"]: | 23 | if type in ["vmdk", "vdi", "qcow2", "hdddirect", "live", "iso", "hddimg"]: |
22 | type = "ext4" | 24 | type = "ext4" |
23 | basetype = type | 25 | basetype = type |