projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08b1165
)
cmd: set CONFIG_SYS_HELP_CMD_WIDTH = 10
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Thu, 28 Feb 2019 05:17:56 +0000
(06:17 +0100)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/include/command.h
b/include/command.h
index 2e24e8ad3eefeb7838a1e2d043d051bfa28e08bd..be74f6ac92f77e20ccb1c80a81011df4a7e573dd 100644
(file)
--- 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__