]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
hush: add CONFIG_HUSH_PARSER to Kconfig
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Thu, 13 Nov 2014 10:29:07 +0000 (19:29 +0900)
committerTom Rini <trini@ti.com>
Sun, 23 Nov 2014 11:49:03 +0000 (06:49 -0500)
commit6c77509000000396a6ad0815e76ffd38d95fb3fd
treef0aad9e7cec8bedb4aab439ccf1107810df4012b
parentb6cf44395f82d990b9855d6244880c9b9cfd5044
hush: add CONFIG_HUSH_PARSER to Kconfig

The README file states that the macros beginning with "CONFIG_SYS_"
depend on the hardware etc. and should not be meddled with if you do
not what you're doing.
We have already screwed up with this policy; we have given the prefix
"CONFIG_SYS_" to many user-selectable configurations.
Here, "CONFIG_SYS_HUSH_PARSER" is one of them.  Users can enable it
if they want to use a more powerful command line parser, or disable it
if they only need a simple one.

This commit attempts to rename CONFIG_SYS_HUSH_PARSER to
CONFIG_HUSH_PARSER and move it to Kconfig.

Every board maintainer is expected to enable CONFIG_HUSH_PARSER
(= add "CONFIG_HUSH_PARSER=y" to his defconfig file) and remove
"#define CONFIG_SYS_HUSH_PARSER" from his header file.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
README
common/Kconfig