From: Shane Wang Date: Mon, 2 Apr 2012 08:29:19 +0000 (+0800) Subject: Hob: a minor fix on image_fstypes X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59dd7e91c11e0348f967578f32e13f5984c6a452;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Shane Wang Signed-off-by: Richard Purdie --- diff --git a/lib/bb/ui/crumbs/builder.py b/lib/bb/ui/crumbs/builder.py index 0c1ee07e75a..abb686eafd5 100755 --- a/lib/bb/ui/crumbs/builder.py +++ b/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