Use qconfig.db as the new name, to reflect the tool's purpose. Signed-off-by: Simon Glass <s...@chromium.org> ---
.gitignore | 4 ++-- tools/qconfig.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 002f95de4fe..7f64446db3c 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 875e467c274..8177370587d 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_') -- 2.41.0.640.ga95def55d0-goog