Index: sysinstall.h =================================================================== RCS file: /home/ncvs/src/usr.sbin/sysinstall/sysinstall.h,v retrieving revision 1.201 retrieving revision 1.202 diff -u -r1.201 -r1.202 --- sysinstall.h 2000/12/14 02:49:02 1.201 +++ sysinstall.h 2001/03/02 08:15:40 1.202 @@ -120,7 +120,6 @@ #define VAR_GEOMETRY "geometry" #define VAR_HOSTNAME "hostname" #define VAR_IFCONFIG "ifconfig_" -#define VAR_INTERFACES "network_interfaces" #define VAR_INSTALL_CFG "installConfig" #define VAR_INSTALL_ROOT "installRoot" #define VAR_IPADDR "ipaddr" Index: tcpip.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/sysinstall/tcpip.c,v retrieving revision 1.112 retrieving revision 1.113 diff -u -r1.112 -r1.113 --- tcpip.c 2000/12/14 13:59:10 1.112 +++ tcpip.c 2001/03/02 08:15:41 1.113 @@ -515,7 +515,6 @@ if (!cancel) { DevInfo *di; char temp[512], ifn[255]; - char *ifaces; char *pccard; int ipv4_enable = FALSE; @@ -557,14 +556,6 @@ pccard = variable_get("_pccard_install"); if (pccard && strcmp(pccard, "YES") == 0 && ipv4_enable) { variable_set2("pccard_ifconfig", temp, 1); - } - ifaces = variable_get(VAR_INTERFACES); - if (!ifaces) - variable_set2(VAR_INTERFACES, ifaces = "lo0", 1); - /* Only add it if it's not there already */ - if (strcmp(ifaces, "auto") && !strstr(ifaces, devp->name)) { - sprintf(ifn, "%s %s", devp->name, ifaces); - variable_set2(VAR_INTERFACES, ifn, 1); } if (use_rtsol) variable_set2(VAR_IPV6_ENABLE, "YES", 1);