From 93a114a7283c9d5cfbd8cdec1b242ee6a37fb91a Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 14 Oct 2004 18:33:29 +0000 Subject: [PATCH] Add the "nv" interface, and enable it in the bootp case since the netif/nv module cannot be directly compiled into a kernel. --- sys/boot/forth/loader-bootp.conf | 7 ++++++- sys/boot/forth/loader.conf | 3 ++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sys/boot/forth/loader-bootp.conf b/sys/boot/forth/loader-bootp.conf index e8045d01e0..f011f3a347 100644 --- a/sys/boot/forth/loader-bootp.conf +++ b/sys/boot/forth/loader-bootp.conf @@ -7,7 +7,7 @@ # All arguments must be in double quotes. # # $FreeBSD: src/sys/boot/forth/loader.conf,v 1.72 2003/07/01 01:03:32 brueffer Exp $ -# $DragonFly: src/sys/boot/forth/loader-bootp.conf,v 1.2 2004/10/14 09:47:47 dillon Exp $ +# $DragonFly: src/sys/boot/forth/loader-bootp.conf,v 1.3 2004/10/14 18:33:29 dillon Exp $ ############################################################## ### Basic configuration options ############################ @@ -178,6 +178,10 @@ pf_load="NO" # OpenBSD's packet filter ############################################################## ### Networking drivers ##################################### ############################################################## +# +# NOTE! most of these will be built into a generic kernel, but some cannot +# be and those should be enabled here for PXE boots or the kernel may not +# be able to mount the root filesystem via NFS. miibus_load="NO" # miibus support, needed for some drivers if_an_load="NO" # Aironet 4500/4800 802.11 wireless NICs @@ -190,6 +194,7 @@ if_de_load="NO" # DEC DC21x4x ethernet if_ed_load="NO" # National Semiconductor DS8390/WD83C690 ethernet if_el_load="NO" # 3Com Etherlink 3C501 if_em_load="NO" # Intel(R) PRO/1000 gigabit ethernet +if_nv_load="YES" # NVidia MB ethernet (Typ AMDXP/AMD64 boxes) if_en_load="NO" # Midway-based ATM interfaces if_ep_load="NO" # 3Com Etherlink III (3c5x9) if_ex_load="NO" # Intel EtherExpress Pro/10 ethernet diff --git a/sys/boot/forth/loader.conf b/sys/boot/forth/loader.conf index f4d3cd00f9..81501ba6b8 100644 --- a/sys/boot/forth/loader.conf +++ b/sys/boot/forth/loader.conf @@ -7,7 +7,7 @@ # All arguments must be in double quotes. # # $FreeBSD: src/sys/boot/forth/loader.conf,v 1.72 2003/07/01 01:03:32 brueffer Exp $ -# $DragonFly: src/sys/boot/forth/loader.conf,v 1.7 2004/10/14 09:47:47 dillon Exp $ +# $DragonFly: src/sys/boot/forth/loader.conf,v 1.8 2004/10/14 18:33:29 dillon Exp $ ############################################################## ### Basic configuration options ############################ @@ -190,6 +190,7 @@ if_de_load="NO" # DEC DC21x4x ethernet if_ed_load="NO" # National Semiconductor DS8390/WD83C690 ethernet if_el_load="NO" # 3Com Etherlink 3C501 if_em_load="NO" # Intel(R) PRO/1000 gigabit ethernet +if_nv_load="NO" # NVidia MB ethernet (Typ AMDXP/AMD64 boxes) if_en_load="NO" # Midway-based ATM interfaces if_ep_load="NO" # 3Com Etherlink III (3c5x9) if_ex_load="NO" # Intel EtherExpress Pro/10 ethernet -- 2.41.0