diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
| -rw-r--r-- | bitbake/lib/bb/command.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 17276541cc..1893cce71e 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
| @@ -214,7 +214,13 @@ class CommandsSync: | |||
| 214 | image = params[0] | 214 | image = params[0] |
| 215 | base_image = params[1] | 215 | base_image = params[1] |
| 216 | package_queue = params[2] | 216 | package_queue = params[2] |
| 217 | return command.cooker.generateNewImage(image, base_image, package_queue) | 217 | timestamp = params[3] |
| 218 | return command.cooker.generateNewImage(image, base_image, | ||
| 219 | package_queue, timestamp) | ||
| 220 | |||
| 221 | def ensureDir(self, command, params): | ||
| 222 | directory = params[0] | ||
| 223 | bb.utils.mkdirhier(directory) | ||
| 218 | 224 | ||
| 219 | def setVarFile(self, command, params): | 225 | def setVarFile(self, command, params): |
| 220 | """ | 226 | """ |
