diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-06-20 17:11:19 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-06-24 21:24:34 (GMT) |
commit | f1f9d4fac5274d9b5ae1b0087fb0fcfa00687bac (patch) | |
tree | 381d5cc760f05e4f5bf7614a1d3e8bf438029eac /common/Makefile | |
parent | b88d6f761445df5fd9d2dfe8eb5e32891a3843f0 (diff) | |
download | u-boot-f1f9d4fac5274d9b5ae1b0087fb0fcfa00687bac.tar.xz |
hush: complete renaming CONFIG_SYS_HUSH_PARSER to CONFIG_HUSH_PARSER
There is no more define of CONFIG_SYS_HUSH_PARSER. Rename some
remaining references and drop the backward compatible Kconfig entry.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common/Makefile b/common/Makefile index 34cb898..e08cd3e 100644 --- a/common/Makefile +++ b/common/Makefile @@ -11,10 +11,7 @@ obj-y += init/ obj-y += main.o obj-y += exports.o obj-y += hash.o -ifdef CONFIG_SYS_HUSH_PARSER -obj-y += cli_hush.o -endif - +obj-$(CONFIG_HUSH_PARSER) += cli_hush.o obj-$(CONFIG_AUTOBOOT) += autoboot.o # This option is not just y/n - it can have a numeric value |