diff options
| author | Simon Glass <[email protected]> | 2023-09-23 13:44:15 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2023-10-04 09:25:22 -0600 |
| commit | 519637929b95d780d731bad5bbaeadfff727e951 (patch) | |
| tree | 9c671fe040e6aebf00ac3dbb387ddd7ca8586d62 | |
| parent | ea4d6dead3728e5e7e6a2f070ca240de832bce92 (diff) | |
qconfig: Rename the database file
Use qconfig.db as the new name, to reflect the tool's purpose.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | .gitignore | 4 | ||||
| -rwxr-xr-x | tools/qconfig.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index 9697f0088f8..aa016041078 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 dd55a696fda..04118d942da 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_') |
