diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
| -rw-r--r-- | bitbake/lib/bb/command.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 42b5b06712..e83751a2fa 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
| @@ -232,6 +232,17 @@ class CommandsAsync: | |||
| 232 | command.finishAsyncCommand() | 232 | command.finishAsyncCommand() |
| 233 | generateTargetsTree.needcache = True | 233 | generateTargetsTree.needcache = True |
| 234 | 234 | ||
| 235 | def findConfigFiles(self, command, params): | ||
| 236 | """ | ||
| 237 | Find config files which provide appropriate values | ||
| 238 | for the passed configuration variable. i.e. MACHINE | ||
| 239 | """ | ||
| 240 | varname = params[0] | ||
| 241 | |||
| 242 | command.cooker.findConfigFiles(varname) | ||
| 243 | command.finishAsyncCommand() | ||
| 244 | findConfigFiles.needcache = True | ||
| 245 | |||
| 235 | def showVersions(self, command, params): | 246 | def showVersions(self, command, params): |
| 236 | """ | 247 | """ |
| 237 | Show the currently selected versions | 248 | Show the currently selected versions |
