diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-21 18:24:34 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-21 18:24:34 +0000 |
commit | 62805dff4f29339b863c1ee3868683f1aa4b7099 (patch) | |
tree | 41f03d4ede770d7d67be6a3397d2e1ba4b102d68 /release/sysinstall/devices.c | |
parent | b3ede05d680c7e3cfb55fd33acd72b8365293a84 (diff) | |
download | FreeBSD-src-62805dff4f29339b863c1ee3868683f1aa4b7099.zip FreeBSD-src-62805dff4f29339b863c1ee3868683f1aa4b7099.tar.gz |
Try AGAIN to get the disklabel editor to do the right thing.
This is getting ridiculous. I may have to put the clear() back
and take the performance penalty, Poul.
Tweak the TCP/IP setup menu to look a little nicer.
Add lp0 to the list of available network devices (it was found before
but simply not described properly).
Diffstat (limited to 'release/sysinstall/devices.c')
-rw-r--r-- | release/sysinstall/devices.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/sysinstall/devices.c b/release/sysinstall/devices.c index 5d103df..d39cae2 100644 --- a/release/sysinstall/devices.c +++ b/release/sysinstall/devices.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: devices.c,v 1.25 1995/05/20 16:22:41 jkh Exp $ + * $Id: devices.c,v 1.26 1995/05/21 15:40:46 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -92,6 +92,7 @@ static struct { { DEVICE_TYPE_FLOPPY, "rfd1", "Floppy disk drive (unit B)" }, { DEVICE_TYPE_NETWORK, "cuaa0", "Serial port (COM1) - possible PPP device" }, { DEVICE_TYPE_NETWORK, "cuaa1", "Serial port (COM2) - possible PPP device" }, + { DEVICE_TYPE_NETWORK, "lp0", "Parallel Port IP (PLIP) using laplink cable" }, { DEVICE_TYPE_NETWORK, "lo", "Loop-back (local) network interface" }, { DEVICE_TYPE_NETWORK, "sl", "Serial-line IP (SLIP) interface" }, { DEVICE_TYPE_NETWORK, "ppp", "Point-to-Point Protocol (PPP) interface" }, |