Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Nov 2010 01:21:55 +0000 (UTC)
From:      Bruce Cran <brucec@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r215224 - head/usr.sbin/sysinstall
Message-ID:  <201011130121.oAD1Ltf7030525@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brucec
Date: Sat Nov 13 01:21:55 2010
New Revision: 215224
URL: http://svn.freebsd.org/changeset/base/215224

Log:
  We still support PLIP devices, so mention them in addition to ethernet.

Modified:
  head/usr.sbin/sysinstall/install.c
  head/usr.sbin/sysinstall/menus.c

Modified: head/usr.sbin/sysinstall/install.c
==============================================================================
--- head/usr.sbin/sysinstall/install.c	Sat Nov 13 01:11:13 2010	(r215223)
+++ head/usr.sbin/sysinstall/install.c	Sat Nov 13 01:21:55 2010	(r215224)
@@ -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))

Modified: head/usr.sbin/sysinstall/menus.c
==============================================================================
--- head/usr.sbin/sysinstall/menus.c	Sat Nov 13 01:11:13 2010	(r215223)
+++ head/usr.sbin/sysinstall/menus.c	Sat Nov 13 01:21:55 2010	(r215224)
@@ -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",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011130121.oAD1Ltf7030525>