diff mbox series

[v3,26/27] qconfig: Rename the database file

Message ID 20230923194424.1739224-27-sjg@chromium.org
State Accepted
Commit 519637929b95d780d731bad5bbaeadfff727e951
Delegated to: Simon Glass
Headers show
Series moveconfig: Drop old code and tidy up | expand

Commit Message

Simon Glass Sept. 23, 2023, 7:44 p.m. UTC
Use qconfig.db as the new name, to reflect the tool's purpose.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 .gitignore       | 4 ++--
 tools/qconfig.py | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Comments

Simon Glass Oct. 4, 2023, 5:58 p.m. UTC | #1
Use qconfig.db as the new name, to reflect the tool's purpose.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 .gitignore       | 4 ++--
 tools/qconfig.py | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Applied to u-boot-dm, thanks!
Simon Glass Oct. 7, 2023, 8:37 p.m. UTC | #2
Use qconfig.db as the new name, to reflect the tool's purpose.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 .gitignore       | 4 ++--
 tools/qconfig.py | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Applied to u-boot-dm, thanks!
Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/.gitignore b/.gitignore
index 002f95de4feb..7f64446db3c8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -107,5 +107,5 @@  __pycache__
 /pylint.cur
 /pylint.out/
 
-# moveconfig database
-/moveconfig.db
+# qconfig database
+/qconfig.db
diff --git a/tools/qconfig.py b/tools/qconfig.py
index dd55a696fda2..04118d942da6 100755
--- a/tools/qconfig.py
+++ b/tools/qconfig.py
@@ -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_')