diff options
author | Rob Landley <rob@landley.net> | 2016-01-12 10:45:58 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-01-12 10:45:58 -0600 |
commit | 456b363175ae9a9bf2128d3e39a325552e1f0c43 (patch) | |
tree | 7b485e17814fd4e0c477257eefcb21d47a1139c9 /kconfig | |
parent | 5f58880c15ce3434c0eac8959ea1e07a91b0dc03 (diff) | |
download | toybox-456b363175ae9a9bf2128d3e39a325552e1f0c43.tar.gz |
Expand defconfig/allyesconfig/allnoconfig help text to explain what they're for.
Diffstat (limited to 'kconfig')
-rw-r--r-- | kconfig/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile index a2547cc0..7466d035 100644 --- a/kconfig/Makefile +++ b/kconfig/Makefile @@ -40,8 +40,12 @@ help:: @echo ' silentoldconfig - Same as oldconfig, but quietly' @echo ' randconfig - New config with random answer to all options' @echo ' defconfig - New config with default answer to all options' + @echo ' This is the maximum sane configuration.' @echo ' allyesconfig - New config where all options are accepted with yes' + @echo " This may not actually compile, it's a starting point" + @echo ' for further configuration (probably with menuconfig)' @echo ' allnoconfig - New config where all options are answered with no' + @echo ' (NOP binary, starting point for further configuration)' # Cheesy build |