aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-09-23 13:44:12 -0600
committerSimon Glass <sjg@chromium.org>2023-10-04 09:25:21 -0600
commitfc07d99e6a3a15dc4a6e75134efad1e4b90a4339 (patch)
treea6ababad193821f58c36d6ea06890149f2c134a2
parentdc1d2e6c7f932386a3ef2d40de65c6659d928bb2 (diff)
moveconfig: Drop the initial output
Since moveconfig now just does what it is told (build database or sync defconfigs) we don't need to print what it is doing. Drop this info, which is of very little use. Signed-off-by: Simon Glass <sjg@chromium.org>
-rwxr-xr-xtools/moveconfig.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index c6d7c53f8b..5392e1f808 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -727,12 +727,6 @@ def move_config(toolchains, args, db_queue, col):
db_queue (Queue): Queue for database updates
col (terminal.Color): Colour object
"""
- if args.force_sync:
- print('Syncing defconfigs', end=' ')
- elif args.build_db:
- print(f'Building {CONFIG_DATABASE} database')
- print(f'(jobs: {args.jobs})\n')
-
if args.git_ref:
reference_src = ReferenceSource(args.git_ref)
reference_src_dir = reference_src.get_dir()