diff options
author | peter <peter@FreeBSD.org> | 1998-09-28 20:17:05 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-09-28 20:17:05 +0000 |
commit | d3c472a717425dfab6368f3988abed8a910fad4d (patch) | |
tree | 0773ea94aed27b296b39f36db5542eff52c7b57b /sys | |
parent | 652e75ae6c22edaa0b7f166ff851a85ec67465b1 (diff) | |
download | FreeBSD-src-d3c472a717425dfab6368f3988abed8a910fad4d.zip FreeBSD-src-d3c472a717425dfab6368f3988abed8a910fad4d.tar.gz |
The comconsole mode is accessed as 'comconsole' not 'com'.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/i386/loader/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/i386/loader/main.c b/sys/boot/i386/loader/main.c index d70a370..2178247 100644 --- a/sys/boot/i386/loader/main.c +++ b/sys/boot/i386/loader/main.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: main.c,v 1.6 1998/09/18 02:03:30 msmith Exp $ + * $Id: main.c,v 1.7 1998/09/26 01:31:10 msmith Exp $ */ /* @@ -87,7 +87,7 @@ main(void) * If the previous boot stage has requested a serial console, prefer that. */ if (kargs->howto & RB_SERIAL) - setenv("console", "com", 1); + setenv("console", "comconsole", 1); cons_probe(); /* |