diff options
author | nyan <nyan@FreeBSD.org> | 2001-07-04 13:00:21 +0000 |
---|---|---|
committer | nyan <nyan@FreeBSD.org> | 2001-07-04 13:00:21 +0000 |
commit | 497620bac5a53c422f1848241d5df96e19c8f71e (patch) | |
tree | 9e2aa991c3b2c116dea316c8fd95067921cb43c2 /sys/modules/lnc | |
parent | 53b01bc71cc702ed3a886222afd9162fc7067c20 (diff) | |
download | FreeBSD-src-497620bac5a53c422f1848241d5df96e19c8f71e.zip FreeBSD-src-497620bac5a53c422f1848241d5df96e19c8f71e.tar.gz |
- Don't overwrite inb, inw and outw.
- Move the lance_probe function to if_lnc.c.
- Support C-NET(98)S again.
Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata) and nyan
No response from: Paul Richards
Diffstat (limited to 'sys/modules/lnc')
-rw-r--r-- | sys/modules/lnc/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/modules/lnc/Makefile b/sys/modules/lnc/Makefile index a9b823b..fdc56c4 100644 --- a/sys/modules/lnc/Makefile +++ b/sys/modules/lnc/Makefile @@ -3,10 +3,18 @@ .PATH: ${.CURDIR}/../../dev/lnc KMOD= if_lnc -SRCS= if_lnc.c if_lnc_pci.c if_lnc_isa.c if_lnc_pc98.c +SRCS= if_lnc.c if_lnc_pci.c +.if ${MACHINE} == "pc98" +SRCS+= if_lnc_cbus.c +.else +SRCS+= if_lnc_isa.c +.endif SRCS+= opt_inet.h device_if.h bus_if.h isa_if.h pci_if.h #SRCS+= miibus_if.h CFLAGS+= -g -I${.CURDIR}/../../dev/lnc +.if ${MACHINE} == "pc98" +CFLAGS+= -DPC98 +.endif .include <bsd.kmod.mk> |