diff options
author | Paul Mackerras <paulus@samba.org> | 2005-11-08 06:55:08 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-08 06:55:08 -0500 |
commit | fca5dcd4835ed09bb1a48a355344aff7a25c76e0 (patch) | |
tree | b596fad4509d3208ef974b9e22b2326ecfd85b83 /arch/powerpc/kernel/setup_32.c | |
parent | 3825ac0ee66b50cb0208ee74796fe65f3040e67c (diff) |
powerpc: Simplify and clean up the xmon terminal I/O
This factors out the common bits of arch/powerpc/xmon/start_*.c into
a new nonstdio.c, and removes some stuff that was supposed to make
xmon's I/O routines somewhat stdio-like but was never used.
It also makes the parsing of the xmon= command line option common,
so that ppc32 can now use xmon={off,on,early} also.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/setup_32.c')
-rw-r--r-- | arch/powerpc/kernel/setup_32.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/arch/powerpc/kernel/setup_32.c b/arch/powerpc/kernel/setup_32.c index 3af2631e3fab..0fbc73f7f828 100644 --- a/arch/powerpc/kernel/setup_32.c +++ b/arch/powerpc/kernel/setup_32.c | |||
@@ -303,14 +303,9 @@ void __init setup_arch(char **cmdline_p) | |||
303 | pmac_feature_init(); /* New cool way */ | 303 | pmac_feature_init(); /* New cool way */ |
304 | #endif | 304 | #endif |
305 | 305 | ||
306 | #ifdef CONFIG_XMON | 306 | #ifdef CONFIG_XMON_DEFAULT |
307 | xmon_map_scc(); | 307 | xmon_init(1); |
308 | if (strstr(cmd_line, "xmon")) { | 308 | #endif |
309 | xmon_init(1); | ||
310 | debugger(NULL); | ||
311 | } | ||
312 | #endif /* CONFIG_XMON */ | ||
313 | if ( ppc_md.progress ) ppc_md.progress("setup_arch: enter", 0x3eab); | ||
314 | 309 | ||
315 | #if defined(CONFIG_KGDB) | 310 | #if defined(CONFIG_KGDB) |
316 | if (ppc_md.kgdb_map_scc) | 311 | if (ppc_md.kgdb_map_scc) |