summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-03-29 20:01:18 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-29 21:25:54 +0100
commitf5fd769f5aa72089b3d10bddc6f38141e6b431c5 (patch)
tree11736cd9e8af19bf028fe6d3ca0dd92745780f60 /bitbake/lib/bb/ui/crumbs/hobeventhandler.py
parenta8c03230341644b1a2589f89ff40fdfb382534e8 (diff)
downloadpoky-f5fd769f5aa72089b3d10bddc6f38141e6b431c5.tar.gz
Hob: Change the format to store image_fstype variable
Use string format to store image_fstype instead of a list. (Bitbake rev: c91fe7f9d21939fd437dbd79a923499f90fc95c6) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobeventhandler.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 11444ad459..7d53e305dd 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -262,7 +262,7 @@ class HobHandler(gobject.GObject):
262 self.server.runCommand(["setVariable", "SDKMACHINE", sdk_machine]) 262 self.server.runCommand(["setVariable", "SDKMACHINE", sdk_machine])
263 263
264 def set_image_fstypes(self, image_fstypes): 264 def set_image_fstypes(self, image_fstypes):
265 self.server.runCommand(["setVariable", "IMAGE_FSTYPES", " ".join(image_fstypes).lstrip(" ")]) 265 self.server.runCommand(["setVariable", "IMAGE_FSTYPES", image_fstypes])
266 266
267 def set_distro(self, distro): 267 def set_distro(self, distro):
268 if distro != "defaultsetup": 268 if distro != "defaultsetup":