Hook up age(4) to the build.

This commit is contained in:
Pyun YongHyeon 2008-05-19 01:53:47 +00:00
parent 16199571c5
commit cfef026a03
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179101
4 changed files with 13 additions and 0 deletions

View File

@ -1751,6 +1751,8 @@ device miibus
# an: Aironet 4500/4800 802.11 wireless adapters. Supports the PCMCIA,
# PCI and ISA varieties.
# age: Support for gigabit ethernet adapters based on the Attansic/Atheros
# L1 PCI express gigabit ethernet controllers.
# bce: Broadcom NetXtreme II (BCM5706/BCM5708) PCI/PCIe Gigabit Ethernet
# adapters.
# bfe: Broadcom BCM4401 Ethernet adapter.
@ -1891,6 +1893,7 @@ device wi
device xe
# PCI Ethernet NICs that use the common MII bus controller code.
device age # Attansic/Atheros L1 Gigabit Ethernet
device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
device bfe # Broadcom BCM440x 10/100 Ethernet
device bge # Broadcom BCM570xx Gigabit Ethernet

View File

@ -426,6 +426,7 @@ dev/advansys/adw_pci.c optional adw pci
dev/advansys/adwcam.c optional adw
dev/advansys/adwlib.c optional adw
dev/advansys/adwmcode.c optional adw
dev/age/if_age.c optional age pci
dev/agp/agp.c optional agp pci
dev/agp/agp_if.m optional agp pci
dev/aha/aha.c optional aha

View File

@ -8,6 +8,7 @@ SUBDIR= ${_3dfx} \
accf_data \
accf_http \
${_acpi} \
age \
${_agp} \
aha \
${_ahb} \

8
sys/modules/age/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/age
KMOD= if_age
SRCS= if_age.c device_if.h bus_if.h pci_if.h miibus_if.h
.include <bsd.kmod.mk>