From e8a94e40fdf7989a4b49e63e1012ef9efcf763ca Mon Sep 17 00:00:00 2001 From: andersen Date: Tue, 20 Nov 2001 05:42:57 +0000 Subject: S390 wierdness git-svn-id: svn://busybox.net/trunk/busybox@3743 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- init/init.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'init') diff --git a/init/init.c b/init/init.c index 118ab327a..943db5261 100644 --- a/init/init.c +++ b/init/init.c @@ -685,9 +685,15 @@ static void halt_signal(int sig) { shutdown_system(); message(CONSOLE|LOG, +#if #cpu(s390) + /* Seems the s390 console is Wierd(tm). */ + "The system is halted. You may reboot now.\n", +#else + /* secondConsole is NULL for a serial console */ "The system is halted. Press %s or turn off power\n", - (secondConsole == NULL) /* serial console */ - ? "Reset" : "CTRL-ALT-DEL"); + (secondConsole == NULL)? "Reset" : "CTRL-ALT-DEL" +#endif + ); sync(); /* allow time for last message to reach serial console */ -- cgit v1.2.3-55-g6feb