[U-Boot] [PATCH 2/2] tools: moveconfig: process defconfig files in alphabetical order
Masahiro Yamada
yamada.masahiro at socionext.com
Sun Oct 16 19:17:23 CEST 2016
This will make the log more readable. The log is not deterministic
in case of parallel processing, though.
Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
---
tools/moveconfig.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index 67cf5f0..49cb1e2 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -1221,6 +1221,8 @@ def move_config(configs, options):
else:
defconfigs = get_all_defconfigs()
+ defconfigs.sort()
+
progress = Progress(len(defconfigs))
slots = Slots(configs, options, progress, reference_src_dir)
--
1.9.1
More information about the U-Boot
mailing list