44ac0964e9
in order to support the on-board LANCE in Ultra 1 and to the MI NOTES as it should work just fine with the AMD PCnet family of chips on all archs but is not yet meant to replace lnc(4). If a kernel includes all of le(4), lnc(4) and pcn(4) precedence is given to lnc(4)/pcn(4) for now.
15 lines
285 B
Makefile
15 lines
285 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/le
|
|
|
|
KMOD= if_le
|
|
SRCS= am7990.c am79900.c ${if_le_ledma} if_le_pci.c lance.c
|
|
SRCS+= bus_if.h device_if.h ${ofw_bus_if} pci_if.h
|
|
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
if_le_ledma= if_le_ledma.c
|
|
ofw_bus_if= ofw_bus_if.h
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|