aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2012-04-02 16:29:19 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-05 18:48:08 +0100
commit3d9f67c2d676fd283078fb50127369768b072793 (patch)
tree06fb74f234136202ef69920ffcabbeaba6eb5ad7 /bitbake
parent0d76c5b9c5cc95492f049bc748053131f33fcfd9 (diff)
downloadopenembedded-core-contrib-3d9f67c2d676fd283078fb50127369768b072793.tar.gz
Hob: a minor fix on image_fstypes
image_fstypes in the configuration has been changed into a string rather than a list. Here we correct it in __init__() of class Configuration. At other places, image_fstypes are all strings. (Bitbake rev: 59dd7e91c11e0348f967578f32e13f5984c6a452) Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
index 0c1ee07e75..abb686eafd 100755
--- a/bitbake/lib/bb/ui/crumbs/builder.py
+++ b/bitbake/lib/bb/ui/crumbs/builder.py
@@ -60,7 +60,7 @@ class Configuration:
self.lconf_version = params["lconf_version"]
self.extra_setting = {}
self.toolchain_build = False
- self.image_fstypes = params["image_fstypes"].split()
+ self.image_fstypes = params["image_fstypes"]
# bblayers.conf
self.layers = params["layer"].split()
# image/recipes/packages