From patchwork Sun Apr 1 14:21:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,6/7] Hob: a minor fix on image_fstypes Date: Sun, 01 Apr 2012 14:21:42 -0000 From: Shane Wang X-Patchwork-Id: 25041 Message-Id: To: bitbake-devel@lists.openembedded.org 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 --- bitbake/lib/bb/ui/crumbs/builder.py | 2 +- 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 151bec4..7a786a9 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