diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2007-06-13 02:17:33 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2007-06-13 02:17:33 +0000 |
commit | b80ad0b3ac0ae856697de4144f0b147863887fce (patch) | |
tree | 48bf8a762e092a891f152df0817e8f140600cc9d /sys/stand/boot/boot.c | |
parent | b6beaff152c22af1b998cf05c5a1fa0c8d9f3e0b (diff) |
Switch macppc to the interactive bootloader in stand/boot.
Much more useable on serial console systems.
Diffstat (limited to 'sys/stand/boot/boot.c')
-rw-r--r-- | sys/stand/boot/boot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/stand/boot/boot.c b/sys/stand/boot/boot.c index 402537771de..d36189d983b 100644 --- a/sys/stand/boot/boot.c +++ b/sys/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.33 2007/05/29 00:03:13 deraadt Exp $ */ +/* $OpenBSD: boot.c,v 1.34 2007/06/13 02:17:32 drahn Exp $ */ /* * Copyright (c) 2003 Dale Rahn @@ -49,11 +49,11 @@ struct cmd_state cmd; /* bootprompt can be set by MD code to avoid prompt first time round */ int bootprompt = 1; +const char *bootfile = KERNEL; void boot(dev_t bootdev) { - const char *bootfile = KERNEL; int try = 0, st; u_long marks[MARK_MAX]; |