1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-29 16:44:03 +00:00

Add an hme(4) module.

PR:		46871
Submitted by:	Hartmut Brandt <brandt@fokus.gmd.de>
This commit is contained in:
David E. O'Brien 2003-01-08 18:45:04 +00:00
parent a5c8d51908
commit b1c519de65
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=108957
2 changed files with 13 additions and 0 deletions

View File

@ -266,6 +266,10 @@ SUBDIR+=linprocfs \
vinum
.endif
.if ${MACHINE_ARCH} == "sparc64"
SUBDIR+=if_hme
.endif
.if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES)
SUBDIR=${MODULES_OVERRIDE}
.endif

View File

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