diff options
Diffstat (limited to 'kern')
-rw-r--r-- | kern/bootstrap.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/kern/bootstrap.c b/kern/bootstrap.c index aad0fb13..249c605c 100644 --- a/kern/bootstrap.c +++ b/kern/bootstrap.c @@ -824,10 +824,18 @@ boot_script_task_resume (struct cmd *cmd) int boot_script_prompt_task_resume (struct cmd *cmd) { +#if ! MACH_KDB char xx[5]; +#endif + + printf ("Pausing for %s...\n", cmd->path); - printf ("Hit return to resume %s...", cmd->path); +#if ! MACH_KDB + printf ("Hit <return> to resume bootstrap."); safe_gets (xx, sizeof xx); +#else + SoftDebugger("Hit `c<return>' to resume bootstrap."); +#endif return boot_script_task_resume (cmd); } |