From af61828f4482c09573b57bcdfea51a17a355477c Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Fri, 8 Jan 1999 00:14:22 +0000 Subject: Adapt sysinstall more fully to the alpha (deal with proper boot signatures, don't present label editor, etc). Submitted by: dfr --- usr.sbin/sysinstall/system.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'usr.sbin/sysinstall/system.c') diff --git a/usr.sbin/sysinstall/system.c b/usr.sbin/sysinstall/system.c index a59137bf5294..289ef90047ed 100644 --- a/usr.sbin/sysinstall/system.c +++ b/usr.sbin/sysinstall/system.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: system.c,v 1.84 1998/09/30 13:36:53 jkh Exp $ + * $Id: system.c,v 1.85 1998/11/03 03:38:56 jkh Exp $ * * Jordan Hubbard * @@ -160,7 +160,11 @@ systemShutdown(int status) if (RunningAsInit) { /* Put the console back */ ioctl(0, VT_ACTIVATE, 2); +#ifdef __alpha__ + reboot(RB_HALT); +#else reboot(0); +#endif } else exit(status); -- cgit v1.2.3