diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-12-14 18:25:18 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-12-14 18:28:22 +0100 |
| commit | 2e08499ce38ca7bf2f368c4dc321ef8a6f287530 (patch) | |
| tree | 39af01ad207b5b54e090d6eb8d92bc9ce2f7f726 /genconfig.py | |
| parent | 2122d5d5891a9a93cc38aa8e21cedf7942ae2ae2 (diff) | |
Make genconfig and standard_kconfig() consistent
Tweak messages and variable names to match.
Diffstat (limited to 'genconfig.py')
| -rwxr-xr-x | genconfig.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/genconfig.py b/genconfig.py index 3482673..d0a8870 100755 --- a/genconfig.py +++ b/genconfig.py @@ -100,8 +100,8 @@ only supported for backwards compatibility). """) parser.add_argument( - "kconfig_filename", - metavar="KCONFIG_FILENAME", + "kconfig", + metavar="KCONFIG", nargs="?", default="Kconfig", help="Top-level Kconfig file (default: Kconfig)") @@ -109,7 +109,7 @@ only supported for backwards compatibility). args = parser.parse_args() - kconf = kconfiglib.Kconfig(args.kconfig_filename, suppress_traceback=True) + kconf = kconfiglib.Kconfig(args.kconfig, suppress_traceback=True) kconf.load_config() if args.header_path is None: |
