diff mbox

[U-Boot,07/10] x86: link: Tidy up the command lines options

Message ID 1412947821-1674-8-git-send-email-sjg@chromium.org
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass Oct. 10, 2014, 1:30 p.m. UTC
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 <sjg@chromium.org>
---

 include/configs/coreboot.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Simon Glass Oct. 24, 2014, 1:36 a.m. UTC | #1
On 10 October 2014 07:30, Simon Glass <sjg@chromium.org> wrote:
> 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 <sjg@chromium.org>
> ---
>
>  include/configs/coreboot.h | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Applied to u-boot-x86/master.
diff mbox

Patch

diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h
index ce614c8..f55b332 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)