From: Simon Glass Date: Fri, 10 Oct 2014 13:30:18 +0000 (-0600) Subject: x86: link: Tidy up the command lines options X-Git-Tag: KARO-TXA5-2015-06-26~523^2~3 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=39c0b633c010b5c4dcb35b9bb73152a1b6f43ae2 x86: link: Tidy up the command lines options We may as well use hush. The auto-complete option was incorrect so this was not enabled. Also expand the command line size a little and go back to the default prompt since "boot>" doesn't seem any more useful. Signed-off-by: Simon Glass --- diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h index ce614c813b..f55b332539 100644 --- a/include/configs/coreboot.h +++ b/include/configs/coreboot.h @@ -109,7 +109,8 @@ #define CONFIG_CMDLINE_EDITING #define CONFIG_COMMAND_HISTORY -#define CONFIG_AUTOCOMPLETE +#define CONFIG_AUTO_COMPLETE +#define CONFIG_SYS_HUSH_PARSER #define CONFIG_SUPPORT_VFAT /************************************************************ @@ -208,8 +209,7 @@ * Miscellaneous configurable options */ #define CONFIG_SYS_LONGHELP -#define CONFIG_SYS_PROMPT "boot > " -#define CONFIG_SYS_CBSIZE 256 +#define CONFIG_SYS_CBSIZE 512 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ sizeof(CONFIG_SYS_PROMPT) + \ 16)