diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-12-22 18:30:44 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2020-01-12 10:33:35 +0100 |
| commit | d613b746e8b76bb8733254318591f07303465404 (patch) | |
| tree | d45075d822a55ebff064cc25c58f30aa9a4e9834 | |
| parent | 69c955ff618e30f704033038fa467be98af07c90 (diff) | |
Make help for Kconfig file argument consistent in tools
Say 'top-level' instea of 'base'.
| -rwxr-xr-x | defconfig.py | 2 | ||||
| -rwxr-xr-x | savedefconfig.py | 2 | ||||
| -rwxr-xr-x | setconfig.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/defconfig.py b/defconfig.py index 173fc7b..05a98f9 100755 --- a/defconfig.py +++ b/defconfig.py @@ -25,7 +25,7 @@ def main(): parser.add_argument( "--kconfig", default="Kconfig", - help="Base Kconfig file (default: Kconfig)") + help="Top-level Kconfig file (default: Kconfig)") parser.add_argument( "config", diff --git a/savedefconfig.py b/savedefconfig.py index 50850fa..0cf60ca 100755 --- a/savedefconfig.py +++ b/savedefconfig.py @@ -30,7 +30,7 @@ def main(): parser.add_argument( "--kconfig", default="Kconfig", - help="Base Kconfig file (default: Kconfig)") + help="Top-level Kconfig file (default: Kconfig)") parser.add_argument( "--out", diff --git a/setconfig.py b/setconfig.py index 4e5c409..ce75f5c 100755 --- a/setconfig.py +++ b/setconfig.py @@ -34,7 +34,7 @@ def main(): parser.add_argument( "--kconfig", default="Kconfig", - help="Base Kconfig file (default: Kconfig)") + help="Top-level Kconfig file (default: Kconfig)") parser.add_argument( "--no-check-exists", |
