aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorMatthew N. Dodd <mdodd@FreeBSD.org>2003-01-17 08:10:18 +0000
committerMatthew N. Dodd <mdodd@FreeBSD.org>2003-01-17 08:10:18 +0000
commit7534ac7ab77288e2ea1532970bb8264e43dd3631 (patch)
tree9569a08b4ce3cebe0d49d0bb941a139c6b6d5f61 /sys/modules
parent8ff601b27c0687261e7d4ca0cf248075cd8c8f4b (diff)
downloadsrc-7534ac7ab77288e2ea1532970bb8264e43dd3631.tar.gz
src-7534ac7ab77288e2ea1532970bb8264e43dd3631.zip
A driver for the System Management Application Program
Interface (SMAPI) BIOS, which is present on some IBM Thinkpad models (560, 600, 770 to name a few.) The SMAPI BIOS provides access to System Information, System Configuration, and Power Management.
Notes
Notes: svn path=/head/; revision=109412
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile1
-rw-r--r--sys/modules/smapi/Makefile9
2 files changed, 10 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 33090339d61a..50c5efd1bcb5 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -211,6 +211,7 @@ SUBDIR+=aac \
iir \
mly \
s3 \
+ smapi \
vesa
.elif ${MACHINE} == "pc98"
diff --git a/sys/modules/smapi/Makefile b/sys/modules/smapi/Makefile
new file mode 100644
index 000000000000..7e9ebee70fe6
--- /dev/null
+++ b/sys/modules/smapi/Makefile
@@ -0,0 +1,9 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../i386/smapi
+
+KMOD= smapi
+SRCS= smapi_isa.c smapi.c smapi_bios.S \
+ bus_if.h device_if.h isa_if.h
+
+.include <bsd.kmod.mk>