summaryrefslogtreecommitdiff
path: root/allyesconfig.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-05-30 21:18:49 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-05-30 21:40:27 +0200
commitf9b158ebb3d81c923461981d2b087989c284c2d4 (patch)
tree0720a09a931c0a241bb444077708389fa7efc035 /allyesconfig.py
parent791b930930b9ddcb752c97c8a8ef859b7afbeb0e (diff)
Add tool helper for loading/saving .config files
Removes repeated KCONFIG_CONFIG boilerplate. Also make allyesconfig use KCONFIG_CONFIG when writing (oversight), and document the sys.exit() behavior for standard_kconfig().
Diffstat (limited to 'allyesconfig.py')
-rwxr-xr-xallyesconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/allyesconfig.py b/allyesconfig.py
index a0eb01d..f99171c 100755
--- a/allyesconfig.py
+++ b/allyesconfig.py
@@ -70,7 +70,7 @@ def main():
if not changed:
break
- kconf.write_config(".config")
+ kconf.write_config(kconfiglib.standard_config_filename())
if __name__ == "__main__":
main()