]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
moveconfig: Drop the initial output
authorSimon Glass <sjg@chromium.org>
Sat, 23 Sep 2023 19:44:12 +0000 (13:44 -0600)
committerSimon Glass <sjg@chromium.org>
Wed, 4 Oct 2023 15:25:21 +0000 (09:25 -0600)
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>
tools/moveconfig.py

index c6d7c53f8b8902d1faa53a6f67e93683d7657486..5392e1f808e7e38a2caf76ad52ada18084329dac 100755 (executable)
@@ -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()