qconfig: Rename the database file

Use qconfig.db as the new name, to reflect the tool's purpose.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2023-09-23 13:44:15 -06:00
parent ea4d6dead3
commit 519637929b
2 changed files with 4 additions and 4 deletions

4
.gitignore vendored
View File

@ -107,5 +107,5 @@ __pycache__
/pylint.cur
/pylint.out/
# moveconfig database
/moveconfig.db
# qconfig database
/qconfig.db

View File

@ -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_')