summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-02-29 22:15:17 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-01 15:51:34 +0000
commit612173b48fb40f0ae8c5a73ea13749a2670c7cd4 (patch)
treee2ddda0371e488fa058d1f657b540c4c9bc57982 /bitbake/lib/bb/ui/crumbs/hobeventhandler.py
parent222ec1c803d54ef68600322a355d1564d632c505 (diff)
downloadpoky-612173b48fb40f0ae8c5a73ea13749a2670c7cd4.tar.gz
command.py: remove the resolve parameter in generateTargetsTree
Remove the "resolve" parameter since the original resolve=False option is no longer be used. (Bitbake rev: dadce609149cfb09ecdc53bfe1f416a3f57a5033) 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 2bf4ed84a1..6c109fc551 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -148,7 +148,7 @@ class HobHandler(gobject.GObject):
148 elif next_command == self.PARSE_BBFILES: 148 elif next_command == self.PARSE_BBFILES:
149 self.server.runCommand(["parseFiles"]) 149 self.server.runCommand(["parseFiles"])
150 elif next_command == self.GENERATE_TGTS: 150 elif next_command == self.GENERATE_TGTS:
151 self.server.runCommand(["generateTargetsTree", "classes/image.bbclass", [], True]) 151 self.server.runCommand(["generateTargetsTree", "classes/image.bbclass", []])
152 elif next_command == self.GENERATE_PACKAGEINFO: 152 elif next_command == self.GENERATE_PACKAGEINFO:
153 self.server.runCommand(["triggerEvent", "bb.event.RequestPackageInfo()"]) 153 self.server.runCommand(["triggerEvent", "bb.event.RequestPackageInfo()"])
154 elif next_command == self.BUILD_TARGET_RECIPES: 154 elif next_command == self.BUILD_TARGET_RECIPES: