diff options
| author | Daniel C. Sobral <dcs@FreeBSD.org> | 2001-11-28 14:00:36 +0000 |
|---|---|---|
| committer | Daniel C. Sobral <dcs@FreeBSD.org> | 2001-11-28 14:00:36 +0000 |
| commit | 605f755d8a48f0b8b52cfe3297dadf54b0f81a07 (patch) | |
| tree | ec8b7def760e768c1aec514ee706f77672d8b0b0 | |
| parent | 97361ffaabf7cfa98d048e354f716ae32669d68e (diff) | |
Notes
| -rw-r--r-- | sys/boot/common/panic.c | 3 |
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); } |
