Hook bce up to the build

This commit is contained in:
Paul Saab 2006-04-10 20:04:22 +00:00
parent 6caf734fd9
commit d8636a9ab7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=157643
6 changed files with 9 additions and 0 deletions

View File

@ -31,6 +31,7 @@ MAN= aac.4 \
aue.4 \
awi.4 \
axe.4 \
bce.4 \
bfe.4 \
bge.4 \
bktr.4 \

View File

@ -192,6 +192,7 @@ device vx # 3Com 3c590, 3c595 (``Vortex'')
# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
device miibus # MII bus support
device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
device bfe # Broadcom BCM440x 10/100 Ethernet
device bge # Broadcom BCM570xx Gigabit Ethernet
device dc # DEC/Intel 21143 and various workalikes

View File

@ -475,6 +475,7 @@ dev/ath/if_ath_pci.c optional ath pci \
dev/awi/am79c930.c optional awi
dev/awi/awi.c optional awi
dev/awi/if_awi_pccard.c optional awi pccard
dev/bce/if_bce.c optional bce
dev/bfe/if_bfe.c optional bfe
dev/bge/if_bge.c optional bge
dev/bktr/bktr_audio.c optional bktr pci

View File

@ -634,6 +634,9 @@ ED_HPP opt_ed.h
ED_3C503 opt_ed.h
ED_SIC opt_ed.h
# bce driver
BCE_DEBUG opt_bce.h
# bge driver
BGE_FAKE_AUTONEG opt_bge.h

View File

@ -45,6 +45,8 @@ __FBSDID("$FreeBSD$");
* BCM5708S A0, B0, B1
*/
#include "opt_bce.h"
#include <dev/bce/if_bcereg.h>
#include <dev/bce/if_bcefw.h>

View File

@ -204,6 +204,7 @@ device vx # 3Com 3c590, 3c595 (``Vortex'')
# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
device miibus # MII bus support
device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
device bfe # Broadcom BCM440x 10/100 Ethernet
device bge # Broadcom BCM570xx Gigabit Ethernet
device dc # DEC/Intel 21143 and various workalikes