summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-09 16:37:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-11 10:58:36 +0000
commit4e4f040a73ca81f830cf90af05b75e7c06f91d8d (patch)
tree757658c20d4a305195e437d94db81242acd1f26f /bitbake/lib/bb/cooker.py
parent44e148d6160f1205bdafd902f8ab9771d7181b43 (diff)
downloadpoky-4e4f040a73ca81f830cf90af05b75e7c06f91d8d.tar.gz
bitbake: cooker/command: Drop async command handler indirection via cooker
Indirecting the async command handler via cooker is confusing and no longer needed. Drop it to make things slightly clearer. (Bitbake rev: 4a41a7d0594e6a84a67b9de70a505858aebcd84a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index d2c42c858d..13d6e9d847 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -535,15 +535,6 @@ class BBCooker:
535 logger.debug("Base environment change, triggering reparse") 535 logger.debug("Base environment change, triggering reparse")
536 self.reset() 536 self.reset()
537 537
538 def runCommands(self, server, data, halt):
539 """
540 Run any queued asynchronous command
541 This is done by the idle handler so it runs in true context rather than
542 tied to any UI.
543 """
544
545 return self.command.runAsyncCommand()
546
547 def showVersions(self): 538 def showVersions(self):
548 539
549 (latest_versions, preferred_versions, required) = self.findProviders() 540 (latest_versions, preferred_versions, required) = self.findProviders()