diff options
author | jfv <jfv@FreeBSD.org> | 2007-07-11 22:59:57 +0000 |
---|---|---|
committer | jfv <jfv@FreeBSD.org> | 2007-07-11 22:59:57 +0000 |
commit | ec7926c660c8305b083ed20c8e3fd6ed29f5d9ad (patch) | |
tree | 9c5bab59b8bdf8183fb4850aaec427b8a5ba869b | |
parent | 62984f5f3f350522da3cff41b848b5a007e8d078 (diff) | |
download | FreeBSD-src-ec7926c660c8305b083ed20c8e3fd6ed29f5d9ad.zip FreeBSD-src-ec7926c660c8305b083ed20c8e3fd6ed29f5d9ad.tar.gz |
New driver for Intel 10G PCI-Express adapter (82598), driver is
still in Beta, but we want early users to have access to it in
7.0, Feedback welcome. Enjoy. -Jack
Approved by: re
-rw-r--r-- | sys/conf/files | 10 | ||||
-rw-r--r-- | sys/conf/kern.pre.mk | 3 |
2 files changed, 13 insertions, 0 deletions
diff --git a/sys/conf/files b/sys/conf/files index 82151ba..b5d3c8a 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -739,6 +739,16 @@ dev/iwi/if_iwi.c optional iwi dev/ixgb/if_ixgb.c optional ixgb dev/ixgb/ixgb_ee.c optional ixgb dev/ixgb/ixgb_hw.c optional ixgb +dev/ixgbe/ixgbe.c optional ixgbe \ + compile-with "${NORMAL_C} -I$S/dev/ixgbe" +dev/ixgbe/ixgbe_phy.c optional ixgbe \ + compile-with "${NORMAL_C} -I$S/dev/ixgbe" +dev/ixgbe/ixgbe_api.c optional ixgbe \ + compile-with "${NORMAL_C} -I$S/dev/ixgbe" +dev/ixgbe/ixgbe_common.c optional ixgbe \ + compile-with "${NORMAL_C} -I$S/dev/ixgbe" +dev/ixgbe/ixgbe_82598.c optional ixgbe \ + compile-with "${NORMAL_C} -I$S/dev/ixgbe" dev/joy/joy.c optional joy dev/joy/joy_isa.c optional joy isa dev/joy/joy_pccard.c optional joy pccard diff --git a/sys/conf/kern.pre.mk b/sys/conf/kern.pre.mk index dad0f42..5014be3 100644 --- a/sys/conf/kern.pre.mk +++ b/sys/conf/kern.pre.mk @@ -79,6 +79,9 @@ INCLUDES+= -I$S/dev/twa # .. and the same for em INCLUDES+= -I$S/dev/em +# .. and ixgbe +INCLUDES+= -I$S/dev/ixgbe + # ... and XFS INCLUDES+= -I$S/gnu/fs/xfs/FreeBSD -I$S/gnu/fs/xfs/FreeBSD/support -I$S/gnu/fs/xfs |