diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
| -rw-r--r-- | bitbake/lib/bb/command.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index b88089298c..42b5b06712 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
| @@ -222,6 +222,16 @@ class CommandsAsync: | |||
| 222 | command.finishAsyncCommand() | 222 | command.finishAsyncCommand() |
| 223 | generateDotGraph.needcache = True | 223 | generateDotGraph.needcache = True |
| 224 | 224 | ||
| 225 | def generateTargetsTree(self, command, params): | ||
| 226 | """ | ||
| 227 | Generate a tree of all buildable targets. | ||
| 228 | """ | ||
| 229 | klass = params[0] | ||
| 230 | |||
| 231 | command.cooker.generateTargetsTree(klass) | ||
| 232 | command.finishAsyncCommand() | ||
| 233 | generateTargetsTree.needcache = True | ||
| 234 | |||
| 225 | def showVersions(self, command, params): | 235 | def showVersions(self, command, params): |
| 226 | """ | 236 | """ |
| 227 | Show the currently selected versions | 237 | Show the currently selected versions |
