diff options
author | Shane Wang <shane.wang@intel.com> | 2012-04-02 16:29:19 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-05 18:48:08 +0100 |
commit | 3d9f67c2d676fd283078fb50127369768b072793 (patch) | |
tree | 06fb74f234136202ef69920ffcabbeaba6eb5ad7 /bitbake/lib/bb/ui | |
parent | 0d76c5b9c5cc95492f049bc748053131f33fcfd9 (diff) | |
download | poky-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/lib/bb/ui')
-rwxr-xr-x | 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 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: | |||
60 | self.lconf_version = params["lconf_version"] | 60 | self.lconf_version = params["lconf_version"] |
61 | self.extra_setting = {} | 61 | self.extra_setting = {} |
62 | self.toolchain_build = False | 62 | self.toolchain_build = False |
63 | self.image_fstypes = params["image_fstypes"].split() | 63 | self.image_fstypes = params["image_fstypes"] |
64 | # bblayers.conf | 64 | # bblayers.conf |
65 | self.layers = params["layer"].split() | 65 | self.layers = params["layer"].split() |
66 | # image/recipes/packages | 66 | # image/recipes/packages |