diff options
| author | Tom Rini <[email protected]> | 2014-11-11 16:58:44 -0500 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2014-11-26 20:25:39 -0700 |
| commit | ce267335c31e95d69d42abf886ce7f3df1b5b2a4 (patch) | |
| tree | 4f312139e15f8468936089e3fd32b4cf4f16858c /tools | |
| parent | f80a8bbee8665defb32f26029325667704bb4776 (diff) | |
buildman: Save *.img files too
When saving binary files we likely want to keep any .img files that have
been generated as well.
Signed-off-by: Tom Rini <[email protected]>
Acked-by: Simon Glass <[email protected]>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/buildman/builderthread.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index a9cf68a8016..bc4541cb3eb 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -332,7 +332,7 @@ class BuilderThread(threading.Thread): # Now write the actual build output if keep_outputs: - patterns = ['u-boot', '*.bin', 'u-boot.dtb', '*.map', + patterns = ['u-boot', '*.bin', 'u-boot.dtb', '*.map', '*.img', 'include/autoconf.mk', 'spl/u-boot-spl', 'spl/u-boot-spl.bin'] for pattern in patterns: |
