]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
qconfig: Rename the database file
authorSimon Glass <sjg@chromium.org>
Sat, 23 Sep 2023 19:44:15 +0000 (13:44 -0600)
committerSimon Glass <sjg@chromium.org>
Wed, 4 Oct 2023 15:25:22 +0000 (09:25 -0600)
Use qconfig.db as the new name, to reflect the tool's purpose.

Signed-off-by: Simon Glass <sjg@chromium.org>
.gitignore
tools/qconfig.py

index 9697f0088f809d6ce742a13f2c0e069046fcb678..aa01604107886f8bec9c980cc8e569357e903c7f 100644 (file)
@@ -107,5 +107,5 @@ __pycache__
 /pylint.cur
 /pylint.out/
 
-# moveconfig database
-/moveconfig.db
+# qconfig database
+/qconfig.db
index dd55a696fda2f85de9dcc3408ef5157877233b18..04118d942da6da91cb63c0eba478afd2eb6323e6 100755 (executable)
@@ -44,8 +44,8 @@ STATE_AUTOCONF = 2
 STATE_SAVEDEFCONFIG = 3
 
 AUTO_CONF_PATH = 'include/config/auto.conf'
-CONFIG_DATABASE = 'moveconfig.db'
-FAILED_LIST = 'moveconfig.failed'
+CONFIG_DATABASE = 'qconfig.db'
+FAILED_LIST = 'qconfig.failed'
 
 CONFIG_LEN = len('CONFIG_')