svn commit: r247692 - stable/8/usr.sbin/sysinstall
Devin Teske
dteske at FreeBSD.org
Sun Mar 3 08:17:18 UTC 2013
Author: dteske
Date: Sun Mar 3 08:17:17 2013
New Revision: 247692
URL: http://svnweb.freebsd.org/changeset/base/247692
Log:
MFS 9->8 r215224:
We still support PLIP devices, so mention them in addition to ethernet.
Modified:
stable/8/usr.sbin/sysinstall/install.c
stable/8/usr.sbin/sysinstall/menus.c
Modified: stable/8/usr.sbin/sysinstall/install.c
==============================================================================
--- stable/8/usr.sbin/sysinstall/install.c Sun Mar 3 08:04:11 2013 (r247691)
+++ stable/8/usr.sbin/sysinstall/install.c Sun Mar 3 08:17:17 2013 (r247692)
@@ -690,7 +690,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))
Modified: stable/8/usr.sbin/sysinstall/menus.c
==============================================================================
--- stable/8/usr.sbin/sysinstall/menus.c Sun Mar 3 08:04:11 2013 (r247691)
+++ stable/8/usr.sbin/sysinstall/menus.c Sun Mar 3 08:17:17 2013 (r247692)
@@ -884,7 +884,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",
More information about the svn-src-stable
mailing list