From: Heinrich Schuchardt Date: Thu, 28 Feb 2019 05:17:56 +0000 (+0100) Subject: cmd: set CONFIG_SYS_HELP_CMD_WIDTH = 10 X-Git-Tag: v2019.04~22^2~13 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9eebaba2a843e3fa456ef2f6d244bc1bbecfd18b;p=oweals%2Fu-boot.git cmd: set CONFIG_SYS_HELP_CMD_WIDTH = 10 CONFIG_SYS_HELP_CMD_WIDTH is used to format the output of help without any arguments. CONFIG_SYS_HELP_CMD_WIDTH = 8 is too narrow to fit all our commands. Signed-off-by: Heinrich Schuchardt --- diff --git a/include/command.h b/include/command.h index 2e24e8ad3e..be74f6ac92 100644 --- a/include/command.h +++ b/include/command.h @@ -18,7 +18,7 @@ /* Default to a width of 8 characters for help message command width */ #ifndef CONFIG_SYS_HELP_CMD_WIDTH -#define CONFIG_SYS_HELP_CMD_WIDTH 8 +#define CONFIG_SYS_HELP_CMD_WIDTH 10 #endif #ifndef __ASSEMBLY__