Skip to content
Snippets Groups Projects
Commit 2559cd89 authored by Joe Hershberger's avatar Joe Hershberger Committed by Masahiro Yamada
Browse files

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: default avatarJoe Hershberger <joe.hershberger@ni.com>
Acked-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 60727f51
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment