cmd: set CONFIG_SYS_HELP_CMD_WIDTH = 10
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 28 Feb 2019 05:17:56 +0000 (06:17 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 22 Mar 2019 12:35:50 +0000 (08:35 -0400)
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 <xypron.glpk@gmx.de>
include/command.h

index 2e24e8a..be74f6a 100644 (file)
@@ -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__