aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/sound
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2006-06-17 14:36:44 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2006-06-17 14:36:44 +0000
commit12ab72d345dd5e468fb55507b26dde539bc710eb (patch)
tree91e403cf29a159cb8202f6a7c5108d0bb041236a /sys/modules/sound
parent09fac023116d71763c522cfeb1d385df2e3a711e (diff)
downloadsrc-12ab72d345dd5e468fb55507b26dde539bc710eb.tar.gz
src-12ab72d345dd5e468fb55507b26dde539bc710eb.zip
dd the envy24 driver as is to the tree. It's not connected to the build
yet. More commits to follow. I got no response from the author, but since the driver is BSD licensed I don't think he will complain. :-) I got it from http://people.freebsd.org/~lofi/envy24.tar.gz Written by: Katsurajima Naoto <raven@katsurajima.seya.yokohama.jp>
Notes
Notes: svn path=/head/; revision=159687
Diffstat (limited to 'sys/modules/sound')
-rw-r--r--sys/modules/sound/driver/ak452x/Makefile8
-rw-r--r--sys/modules/sound/driver/envy24/Makefile8
2 files changed, 16 insertions, 0 deletions
diff --git a/sys/modules/sound/driver/ak452x/Makefile b/sys/modules/sound/driver/ak452x/Makefile
new file mode 100644
index 000000000000..50a0e67abb30
--- /dev/null
+++ b/sys/modules/sound/driver/ak452x/Makefile
@@ -0,0 +1,8 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../../../dev/sound/pci
+KMOD = snd_ak452x
+SRCS = device_if.h bus_if.h isa_if.h pci_if.h
+SRCS += ak452x.c
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/sound/driver/envy24/Makefile b/sys/modules/sound/driver/envy24/Makefile
new file mode 100644
index 000000000000..37f9d48e6204
--- /dev/null
+++ b/sys/modules/sound/driver/envy24/Makefile
@@ -0,0 +1,8 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../../../dev/sound/pci
+KMOD = snd_envy24
+SRCS = device_if.h bus_if.h isa_if.h pci_if.h
+SRCS += envy24.c
+
+.include <bsd.kmod.mk>