aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass2024-07-17 16:56:59 +0100
committerSimon Glass2024-07-26 08:01:06 -0600
commitc50b6f18f31d461d30183460d83e13eef49d993b (patch)
tree5fc11543e060962bcdcfc9dd0aaf23cc6f0db5ec
parent035ecb44ecdf0577bf96e7b3545511bb33f9e010 (diff)
qconfig: Move checking directory to the top
Move this check to the top, so it happens always. The tool should be run from the U-Boot source directory. Signed-off-by: Simon Glass <sjg@chromium.org>
-rwxr-xr-xtools/qconfig.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/qconfig.py b/tools/qconfig.py
index 5d6e468d1d8..832e524c25c 100755
--- a/tools/qconfig.py
+++ b/tools/qconfig.py
@@ -1528,6 +1528,9 @@ def main():
args.scan_source, args.test)):
parser.print_usage()
sys.exit(1)
+
+ check_top_directory()
+
if args.test:
sys.argv = [sys.argv[0]]
fail, _ = doctest.testmod()
@@ -1542,8 +1545,6 @@ def main():
# prefix the option name with CONFIG_ if missing
configs = [prefix_config(cfg) for cfg in args.configs]
- check_top_directory()
-
if args.imply:
imply_flags = 0
if args.imply_flags == 'all':