diff options
author | brucec <brucec@FreeBSD.org> | 2010-11-13 01:21:55 +0000 |
---|---|---|
committer | brucec <brucec@FreeBSD.org> | 2010-11-13 01:21:55 +0000 |
commit | d460534b4920441a5c7fadace2f78c19c1a0d963 (patch) | |
tree | 4fa9498f2a890f2cc8a7f46f7d03b9941f4a6c53 /usr.sbin | |
parent | 479b7f42883a475385c5a0203d82972be32f2bdb (diff) | |
download | FreeBSD-src-d460534b4920441a5c7fadace2f78c19c1a0d963.zip FreeBSD-src-d460534b4920441a5c7fadace2f78c19c1a0d963.tar.gz |
We still support PLIP devices, so mention them in addition to ethernet.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sysinstall/install.c | 2 | ||||
-rw-r--r-- | usr.sbin/sysinstall/menus.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 4bf67ea..273f221 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -692,7 +692,7 @@ nodisks: "may do so by typing: /usr/sbin/sysinstall."); } if (mediaDevice->type != DEVICE_TYPE_FTP && mediaDevice->type != DEVICE_TYPE_NFS) { - if (!msgYesNo("Would you like to configure any Ethernet network devices?")) { + if (!msgYesNo("Would you like to configure any Ethernet or PLIP network devices?")) { Device *tmp = tcpDeviceSelect(); if (tmp && !((DevInfo *)tmp->private)->use_dhcp && !msgYesNo("Would you like to bring the %s interface up right now?", tmp->name)) diff --git a/usr.sbin/sysinstall/menus.c b/usr.sbin/sysinstall/menus.c index 2015978..271909d 100644 --- a/usr.sbin/sysinstall/menus.c +++ b/usr.sbin/sysinstall/menus.c @@ -882,7 +882,7 @@ DMenu MenuMediaFTP = { DMenu MenuNetworkDevice = { DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS, "Network interface information required", - "Please select the ethernet device to configure.\n\n" + "Please select the ethernet or PLIP device to configure.\n\n" "", "Press F1 to read network configuration manual", "network_device", |