diff options
author | Simon Glass | 2023-09-23 13:43:56 -0600 |
---|---|---|
committer | Simon Glass | 2023-10-04 09:25:20 -0600 |
commit | 03137421f5c89d6f3864b3261890670b52bdfb65 (patch) | |
tree | 882967f91f2a3793b0f20a010170b1ec89867aa1 /tools | |
parent | c734561563dd0e02b0d1f3b2a7085579d2e4d718 (diff) |
moveconfig: Drop suspicious boards
This code isn't needed anymore. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/moveconfig.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tools/moveconfig.py b/tools/moveconfig.py index 87a670f6e85..36202fe5134 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -601,11 +601,6 @@ class Slot: """ return self.failed_boards - def get_suspicious_boards(self): - """Returns a set of boards (defconfigs) with possible misconversion. - """ - return self.suspicious_boards - self.failed_boards - class Slots: """Controller of the array of subprocess slots.""" @@ -684,25 +679,6 @@ class Slots: write_file(output_file, boards) - def show_suspicious_boards(self): - """Display all boards (defconfigs) with possible misconversion.""" - boards = set() - output_file = 'moveconfig.suspicious' - - for slot in self.slots: - boards |= slot.get_suspicious_boards() - - if boards: - boards = '\n'.join(boards) + '\n' - msg = 'The following boards might have been converted incorrectly.\n' - msg += 'It is highly recommended to check them manually:\n' - msg += boards - msg += '(the list has been saved in %s)\n' % output_file - print(color_text(self.args.color, COLOR_YELLOW, - msg), file=sys.stderr) - - write_file(output_file, boards) - class ReferenceSource: """Reference source against which original configs should be parsed.""" @@ -780,7 +756,6 @@ def move_config(toolchains, args, db_queue): print('') slots.show_failed_boards() - slots.show_suspicious_boards() def find_kconfig_rules(kconf, config, imply_config): """Check whether a config has a 'select' or 'imply' keyword |