aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1999-08-07 01:43:39 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1999-08-07 01:43:39 +0000
commit58e59935e61c0efb4b3f33ec73f25fbf5349b55e (patch)
treec3ae3bd0bba89b4a4935221206a945b0821a4bc5 /usr.sbin/sysinstall
parent0a729622af183656398e50c62f514f7f796a23b8 (diff)
downloadsrc-58e59935e61c0efb4b3f33ec73f25fbf5349b55e.tar.gz
src-58e59935e61c0efb4b3f33ec73f25fbf5349b55e.zip
Re-enable play-nice-with-DHCP option now that bpf is the default
in GENERIC. Now a dhcp-configured system will both install and boot initially with proper interface configuration.
Notes
Notes: svn path=/head/; revision=49477
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r--usr.sbin/sysinstall/tcpip.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c
index d6a3d84a15dc..d41a7d6b1a67 100644
--- a/usr.sbin/sysinstall/tcpip.c
+++ b/usr.sbin/sysinstall/tcpip.c
@@ -1,5 +1,5 @@
/*
- * $Id: tcpip.c,v 1.85 1999/07/19 11:00:56 jkh Exp $
+ * $Id: tcpip.c,v 1.86 1999/07/22 08:51:42 jkh Exp $
*
* Copyright (c) 1995
* Gary J Palmer. All rights reserved.
@@ -384,11 +384,9 @@ netconfig:
di->use_dhcp = use_dhcp;
sprintf(ifn, "%s%s", VAR_IFCONFIG, devp->name);
-#ifdef notyet /* XXX this will only work once bpf is a loadable kernel mod */
if (use_dhcp)
sprintf(temp, "DHCP");
else
-#endif
sprintf(temp, "inet %s %s netmask %s", ipaddr, extras, netmask);
variable_set2(ifn, temp, 1);
ifaces = variable_get(VAR_INTERFACES);