diff options
-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; |