summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel C. Sobral <dcs@FreeBSD.org>2001-11-28 14:00:36 +0000
committerDaniel C. Sobral <dcs@FreeBSD.org>2001-11-28 14:00:36 +0000
commit605f755d8a48f0b8b52cfe3297dadf54b0f81a07 (patch)
treeec8b7def760e768c1aec514ee706f77672d8b0b0
parent97361ffaabf7cfa98d048e354f716ae32669d68e (diff)
Notes
-rw-r--r--sys/boot/common/panic.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/boot/common/panic.c b/sys/boot/common/panic.c
index bad1e45c5dc1..dfebd976f821 100644
--- a/sys/boot/common/panic.c
+++ b/sys/boot/common/panic.c
@@ -50,5 +50,8 @@ panic(const char *fmt,...)
va_end(ap);
printf("\n");
+ printf("--> Press a key on the console to reboot <--\n");
+ getchar();
+ printf("Rebooting...\n");
exit(1);
}