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>
This commit is contained in:
Shane Wang 2012-04-02 16:29:19 +08:00 committed by Richard Purdie
parent 0d76c5b9c5
commit 3d9f67c2d6
1 changed files with 1 additions and 1 deletions

View File

@ -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