diff options
author | njl <njl@FreeBSD.org> | 2004-03-01 08:12:56 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2004-03-01 08:12:56 +0000 |
commit | f37339848807fa8ed91d77ccaf98c11dc2778d3d (patch) | |
tree | 887b735c72d3472e13285c4913e867f1caf448d7 /sys/modules | |
parent | c1c7eeec3cbaa08526760d442face9f1be30f627 (diff) | |
download | FreeBSD-src-f37339848807fa8ed91d77ccaf98c11dc2778d3d.zip FreeBSD-src-f37339848807fa8ed91d77ccaf98c11dc2778d3d.tar.gz |
Add the ACPI standard video extensions driver. I've done some style cleanup
but a bit more reamins to be done. For now, it is usable.
Submitted by: Taku YAMAMOTO <taku@cent.saitama-u.ac.jp>
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/acpi/acpi_video/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/acpi/acpi_video/Makefile b/sys/modules/acpi/acpi_video/Makefile new file mode 100644 index 0000000..5519971 --- /dev/null +++ b/sys/modules/acpi/acpi_video/Makefile @@ -0,0 +1,11 @@ +# $Id: Makefile,v 1.1 2002/12/27 20:34:35 taku Exp $ +# $FreeBSD$ +KMOD= acpi_video +SRCS= acpi_video.c +SRCS+= opt_acpi.h bus_if.h device_if.h +NOMAN= + +.PATH: ${.CURDIR}/../../../dev/acpica +CFLAGS+= -I@/contrib/dev/acpica + +.include <bsd.kmod.mk> |