[POWERPC] fix showing xmon help
In some configuration, xmon help string is larger than xmon_printf buffer. We need not to use printf. This patch adds xmon_puts and change to use it to show help string. Signed-off-by: Kou Ishizaki <kou.ishizaki@toshiba.co.jp> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
committed by
Paul Mackerras
parent
776568d4c9
commit
4d404edce3
@@ -833,7 +833,7 @@ cmds(struct pt_regs *excp)
|
||||
mdelay(2000);
|
||||
return cmd;
|
||||
case '?':
|
||||
printf(help_string);
|
||||
xmon_puts(help_string);
|
||||
break;
|
||||
case 'b':
|
||||
bpt_cmds();
|
||||
|
Reference in New Issue
Block a user