aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/snc
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2000-10-02 14:27:20 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2000-10-02 14:27:20 +0000
commit0a917604f0d17c92d589108eb5760bb42f0a6586 (patch)
treefd2a478c81c471891af65ce8443b29dd0de0413f /sys/modules/snc
parent7320fd3a3003e601d784b9b0c3780ae5875bc45a (diff)
downloadsrc-0a917604f0d17c92d589108eb5760bb42f0a6586.tar.gz
src-0a917604f0d17c92d589108eb5760bb42f0a6586.zip
Added NEC PC-9801-83, 84, PC-9801-103, 104, PC-9801N-25 and PC-9801N-J02R
support which use National Semiconductor DP8393X (SONIC) as ethernet controller. Currently, this driver is used on only PC-98. Submitted by: Motomichi Matsuzaki <mzaki@e-mail.ne.jp> Obtained from: NetBSD/pc98
Notes
Notes: svn path=/head/; revision=66550
Diffstat (limited to 'sys/modules/snc')
-rw-r--r--sys/modules/snc/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/snc/Makefile b/sys/modules/snc/Makefile
new file mode 100644
index 000000000000..f161c1e1e396
--- /dev/null
+++ b/sys/modules/snc/Makefile
@@ -0,0 +1,11 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/snc
+KMOD = if_snc
+SRCS = if_snc.c if_snc_cbus.c if_snc_pccard.c dp83932.c dp83932subr.c
+SRCS += opt_inet.h opt_bdg.h device_if.h bus_if.h isa_if.h
+
+opt_inet.h:
+ echo "#define INET 1" > ${.TARGET}
+
+.include <bsd.kmod.mk>