diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1999-08-07 01:43:39 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1999-08-07 01:43:39 +0000 |
commit | 58e59935e61c0efb4b3f33ec73f25fbf5349b55e (patch) | |
tree | c3ae3bd0bba89b4a4935221206a945b0821a4bc5 /release/sysinstall/tcpip.c | |
parent | 0a729622af183656398e50c62f514f7f796a23b8 (diff) |
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 'release/sysinstall/tcpip.c')
-rw-r--r-- | release/sysinstall/tcpip.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/release/sysinstall/tcpip.c b/release/sysinstall/tcpip.c index d6a3d84a15dc..d41a7d6b1a67 100644 --- a/release/sysinstall/tcpip.c +++ b/release/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); |