aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorNicolas Souchu <nsouch@FreeBSD.org>2001-01-05 16:53:10 +0000
committerNicolas Souchu <nsouch@FreeBSD.org>2001-01-05 16:53:10 +0000
commitc05aa33cb07253b4ec096d33d1c7bb51a5642b6b (patch)
tree38a070cbc8b3a2bd875b180ab3a12c87b0dddac0 /sys/modules
parentb3fc6157264284ff0a0e65e7a3b1b769b723d3af (diff)
Notes
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile2
-rw-r--r--sys/modules/s3/Makefile9
2 files changed, 10 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index a10b490bddea..a0e9a707643f 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -19,7 +19,7 @@ SUBDIR= 3dfx accf_data accf_http agp aha amr an aue \
# XXX some of these can move to the general case when de-i386'ed
.if ${MACHINE_ARCH} == "i386"
SUBDIR+=aac aic asr bktr coff el fpu gnufpu ibcs2 linprocfs mly pecoff ray \
- splash streams svr4 vesa wi
+ s3 splash streams svr4 vesa wi
.endif
.if ${MACHINE} == "pc98"
diff --git a/sys/modules/s3/Makefile b/sys/modules/s3/Makefile
new file mode 100644
index 000000000000..ac42a4279960
--- /dev/null
+++ b/sys/modules/s3/Makefile
@@ -0,0 +1,9 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/fb
+KMOD = s3
+SRCS = device_if.h bus_if.h isa_if.h pci_if.h
+SRCS += s3pci.c
+KMODDEPS = vesa
+
+.include <bsd.kmod.mk>