diff options
author | jkh <jkh@FreeBSD.org> | 1999-08-07 01:43:39 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-08-07 01:43:39 +0000 |
commit | a5df34bc5f92340902af4148b282bece258710c3 (patch) | |
tree | 4057a6b13d92ab26c428a392f757557d64aecfb9 /release | |
parent | 97b7eb8a3cb58a1769ed27dc725967747b7113b0 (diff) | |
download | FreeBSD-src-a5df34bc5f92340902af4148b282bece258710c3.zip FreeBSD-src-a5df34bc5f92340902af4148b282bece258710c3.tar.gz |
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.
Diffstat (limited to 'release')
-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 d6a3d84..d41a7d6 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); |