diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-12-24 14:32:10 -0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-25 08:18:12 +0000 |
commit | 7856fb3f0c5d3892ef04a35e2bc8e08a2806109e (patch) | |
tree | 7d47d3b7efc988a395d306fd37fdd32b90445a5e /meta | |
parent | fc74b5d00753d50e1c6621d0a7dd9cebc173ebab (diff) | |
download | poky-7856fb3f0c5d3892ef04a35e2bc8e08a2806109e.tar.gz |
image_types.bbclass: Rework code to map types for 'ext3'
(From OE-Core rev: df00cb53f0548d34e5865b6fff314bff641af6e7)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/image_types.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index 71b2ea916b..02b107c7c1 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass | |||
@@ -13,7 +13,7 @@ def imagetypes_getdepends(d): | |||
13 | deps = [] | 13 | deps = [] |
14 | ctypes = d.getVar('COMPRESSIONTYPES', True).split() | 14 | ctypes = d.getVar('COMPRESSIONTYPES', True).split() |
15 | for type in (d.getVar('IMAGE_FSTYPES', True) or "").split(): | 15 | for type in (d.getVar('IMAGE_FSTYPES', True) or "").split(): |
16 | if type == "vmdk" or type == "live" or type == "iso" or type == "hddimg": | 16 | if type in ["vmdk", "live", "iso", "hddimg"]: |
17 | type = "ext3" | 17 | type = "ext3" |
18 | basetype = type | 18 | basetype = type |
19 | for ctype in ctypes: | 19 | for ctype in ctypes: |