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 701b286187..bd41f5418a 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
| @@ -238,6 +238,17 @@ class CommandsAsync: | |||
| 238 | command.finishAsyncCommand() | 238 | command.finishAsyncCommand() |
| 239 | generateTargetsTree.needcache = True | 239 | generateTargetsTree.needcache = True |
| 240 | 240 | ||
| 241 | def findCoreBaseFiles(self, command, params): | ||
| 242 | """ | ||
| 243 | Find certain files in COREBASE directory. i.e. Layers | ||
| 244 | """ | ||
| 245 | subdir = params[0] | ||
| 246 | filename = params[1] | ||
| 247 | |||
| 248 | command.cooker.findCoreBaseFiles(subdir, filename) | ||
| 249 | command.finishAsyncCommand() | ||
| 250 | findCoreBaseFiles.needcache = False | ||
| 251 | |||
| 241 | def findConfigFiles(self, command, params): | 252 | def findConfigFiles(self, command, params): |
| 242 | """ | 253 | """ |
| 243 | Find config files which provide appropriate values | 254 | Find config files which provide appropriate values |
