diff options
author | 2000-06-29 02:25:30 +0000 | |
---|---|---|
committer | 2000-06-29 02:25:30 +0000 | |
commit | a73069a9208ddb8687ad3ad9eab7097e297eebd2 (patch) | |
tree | b55ae7c97131ebaf7ccde4792856c45ee878df35 | |
parent | repair careless syslogging inside XSTATS (diff) | |
download | wireguard-openbsd-a73069a9208ddb8687ad3ad9eab7097e297eebd2.tar.xz wireguard-openbsd-a73069a9208ddb8687ad3ad9eab7097e297eebd2.zip |
Enable UKC
-rw-r--r-- | sys/arch/sun3/sun3/sun3_startup.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/sun3/sun3/sun3_startup.c b/sys/arch/sun3/sun3/sun3_startup.c index f93ca6a9b4f..a723c83e49b 100644 --- a/sys/arch/sun3/sun3/sun3_startup.c +++ b/sys/arch/sun3/sun3/sun3_startup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sun3_startup.c,v 1.13 2000/06/06 20:54:12 miod Exp $ */ +/* $OpenBSD: sun3_startup.c,v 1.14 2000/06/29 02:25:30 miod Exp $ */ /* $NetBSD: sun3_startup.c,v 1.55 1996/11/20 18:57:38 gwr Exp $ */ /*- @@ -830,6 +830,12 @@ sun3_monitor_hooks() case 'a': boothowto |= RB_ASKNAME; break; + case 'b': + boothowto |= RB_HALT; + break; + case 'c': + boothowto |= RB_CONFIG; + break; case 's': boothowto |= RB_SINGLE; break; |