diff options
-rw-r--r-- | sys/arch/amd64/amd64/autoconf.c | 3 | ||||
-rw-r--r-- | sys/arch/i386/i386/autoconf.c | 3 | ||||
-rw-r--r-- | sys/nfs/nfs_boot.c | 3 |
3 files changed, 4 insertions, 5 deletions
diff --git a/sys/arch/amd64/amd64/autoconf.c b/sys/arch/amd64/amd64/autoconf.c index ad277d3cf11..7cb437b6147 100644 --- a/sys/arch/amd64/amd64/autoconf.c +++ b/sys/arch/amd64/amd64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.24 2007/12/27 18:04:27 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.25 2008/03/19 05:47:47 deraadt Exp $ */ /* $NetBSD: autoconf.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */ /*- @@ -169,7 +169,6 @@ diskconf(void) break; } if (ifp) { - if_addgroup(ifp, "pxeboot"); #if defined(NFSCLIENT) printf("PXE boot MAC address %s, interface %s\n", ether_sprintf(bios_bootmac->mac), ifp->if_xname); diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c index 04374317e07..81106dced22 100644 --- a/sys/arch/i386/i386/autoconf.c +++ b/sys/arch/i386/i386/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.78 2007/12/27 18:04:27 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.79 2008/03/19 05:47:44 deraadt Exp $ */ /* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */ /*- @@ -204,7 +204,6 @@ diskconf(void) break; } if (ifp) { - if_addgroup(ifp, "pxeboot"); #if defined(NFSCLIENT) printf("PXE boot MAC address %s, interface %s\n", ether_sprintf(bios_bootmac->mac), ifp->if_xname); diff --git a/sys/nfs/nfs_boot.c b/sys/nfs/nfs_boot.c index eed4bb1ad15..62a7c5776be 100644 --- a/sys/nfs/nfs_boot.c +++ b/sys/nfs/nfs_boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_boot.c,v 1.18 2006/06/17 14:14:12 henning Exp $ */ +/* $OpenBSD: nfs_boot.c,v 1.19 2008/03/19 05:47:47 deraadt Exp $ */ /* $NetBSD: nfs_boot.c,v 1.26 1996/05/07 02:51:25 thorpej Exp $ */ /* @@ -154,6 +154,7 @@ nfs_boot_init(nd, procp) bcopy(ifp->if_xname, ireq.ifr_name, IFNAMSIZ); printf("nfs_boot: using interface %s, with revarp & bootparams\n", ireq.ifr_name); + if_addgroup(ifp, "netboot"); /* * Bring up the interface. |