From: Simon Glass Date: Tue, 14 Feb 2012 19:59:22 +0000 (+0000) Subject: Don't include standard parser if hush is used X-Git-Tag: v2012.04-rc1~79 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7fed89e00e0836f7894f350716b3f182ee562760;p=u-boot Don't include standard parser if hush is used This saves about 1KB of code space on ARM with CONFIG_SYS_HUSH_PARSER defined. Signed-off-by: Simon Glass --- diff --git a/common/main.c b/common/main.c index 10ee12c278..637da2b4d3 100644 --- a/common/main.c +++ b/common/main.c @@ -1132,6 +1132,7 @@ int parse_line (char *line, char *argv[]) /****************************************************************************/ +#ifndef CONFIG_SYS_HUSH_PARSER static void process_macros (const char *input, char *output) { char c, prev; @@ -1382,6 +1383,7 @@ static int builtin_run_command(const char *cmd, int flag) return rc ? rc : repeatable; } +#endif /* * Run a command using the selected parser.