diff options
author | jkh <jkh@FreeBSD.org> | 1994-10-26 13:18:49 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-10-26 13:18:49 +0000 |
commit | dc92d1412115bec9ed85dc3abd186b9000ee2fd9 (patch) | |
tree | c968e09aac332aee040d8831b1eb73b0a1a95499 | |
parent | 29a9c7eaa75d805a4b5cbdb5bbdba8e6e791b08c (diff) | |
download | FreeBSD-src-dc92d1412115bec9ed85dc3abd186b9000ee2fd9.zip FreeBSD-src-dc92d1412115bec9ed85dc3abd186b9000ee2fd9.tar.gz |
Add RB_CONFIG flag.
-rw-r--r-- | sys/i386/boot/biosboot/boot.c | 4 | ||||
-rw-r--r-- | sys/i386/boot/boot.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/i386/boot/biosboot/boot.c b/sys/i386/boot/biosboot/boot.c index b5a64b3..c3bef8b 100644 --- a/sys/i386/boot/biosboot/boot.c +++ b/sys/i386/boot/biosboot/boot.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, [92/04/03 16:51:14 rvb] - * $Id: boot.c,v 1.15 1994/08/21 17:47:25 paul Exp $ + * $Id: boot.c,v 1.16 1994/10/06 09:41:03 rgrimes Exp $ */ @@ -277,6 +277,8 @@ getbootdev(howto) *howto |= RB_DFLTROOT; continue; case 'a': *howto |= RB_ASKNAME; continue; + case 'c': + *howto |= RB_CONFIG; continue; case 's': *howto |= RB_SINGLE; continue; case 'd': diff --git a/sys/i386/boot/boot.c b/sys/i386/boot/boot.c index b5a64b3..c3bef8b 100644 --- a/sys/i386/boot/boot.c +++ b/sys/i386/boot/boot.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, [92/04/03 16:51:14 rvb] - * $Id: boot.c,v 1.15 1994/08/21 17:47:25 paul Exp $ + * $Id: boot.c,v 1.16 1994/10/06 09:41:03 rgrimes Exp $ */ @@ -277,6 +277,8 @@ getbootdev(howto) *howto |= RB_DFLTROOT; continue; case 'a': *howto |= RB_ASKNAME; continue; + case 'c': + *howto |= RB_CONFIG; continue; case 's': *howto |= RB_SINGLE; continue; case 'd': |