mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-02-06 20:10:55 +01:00
moveconfig: Output a list of failed boards
If boards fail, output that list to a file so that it can easily be passed back into moveconfig.py using the -d option. Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
60727f5149
commit
2559cd8961
1 changed files with 4 additions and 0 deletions
|
|
@ -716,6 +716,10 @@ class Slots:
|
|||
print >> sys.stderr, color_text(self.options.color,
|
||||
COLOR_LIGHT_RED, line)
|
||||
|
||||
with open('moveconfig.failed', 'w') as f:
|
||||
for board in failed_boards:
|
||||
f.write(board + '\n')
|
||||
|
||||
def move_config(config_attrs, options):
|
||||
"""Move config options to defconfig files.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue