summaryrefslogtreecommitdiffstats
path: root/sys/modules
diff options
context:
space:
mode:
authornetchild <netchild@FreeBSD.org>2007-10-14 10:55:50 +0000
committernetchild <netchild@FreeBSD.org>2007-10-14 10:55:50 +0000
commit8423df3d9411c6e4e79b3a3b06ea1c3c6aaaa81f (patch)
treee4b345443d79b791d5fbc3088afe36b5cdb70868 /sys/modules
parent4af9918bc0e8f388ffda416ed716c9b17ca6c0fd (diff)
downloadFreeBSD-src-8423df3d9411c6e4e79b3a3b06ea1c3c6aaaa81f.zip
FreeBSD-src-8423df3d9411c6e4e79b3a3b06ea1c3c6aaaa81f.tar.gz
Import it(4) and lm(4), supporting most popular Super I/O Hardware Monitors.
Submitted by: Constantine A. Murenin <cnst@FreeBSD.org> Sponsored by: Google Summer of Code 2007 (GSoC2007/cnst-sensors) Mentored by: syrinx Tested by: many OKed by: kensmith Obtained from: OpenBSD (parts)
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile6
-rw-r--r--sys/modules/it/Makefile9
-rw-r--r--sys/modules/lm/Makefile9
3 files changed, 24 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 4c47167..2ac0894 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -131,6 +131,7 @@ SUBDIR= ${_3dfx} \
iscsi \
isp \
ispfw \
+ ${_it} \
${_iwi} \
${_iwifw} \
${_ixgb} \
@@ -146,6 +147,7 @@ SUBDIR= ${_3dfx} \
${_linprocfs} \
${_linsysfs} \
${_linux} \
+ ${_lm} \
lmc \
lpt \
mac_biba \
@@ -453,9 +455,11 @@ _ipmi= ipmi
_ips= ips
_ipw= ipw
_ipwfw= ipwfw
+_it= it
_iwi= iwi
_iwifw= iwifw
_ixgb= ixgb
+_lm= lm
_mly= mly
_nfe= nfe
_nve= nve
@@ -511,10 +515,12 @@ _ipmi= ipmi
_ips= ips
_ipw= ipw
_ipwfw= ipwfw
+_it= it
_ixgb= ixgb
_linprocfs= linprocfs
_linsysfs= linsysfs
_linux= linux
+_lm= lm
_mly= mly
_ndis= ndis
_nfe= nfe
diff --git a/sys/modules/it/Makefile b/sys/modules/it/Makefile
new file mode 100644
index 0000000..f2f064b
--- /dev/null
+++ b/sys/modules/it/Makefile
@@ -0,0 +1,9 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/it
+
+KMOD= it
+SRCS= it.c
+SRCS+= device_if.h bus_if.h isa_if.h
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/lm/Makefile b/sys/modules/lm/Makefile
new file mode 100644
index 0000000..cb0791a
--- /dev/null
+++ b/sys/modules/lm/Makefile
@@ -0,0 +1,9 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/lm
+
+KMOD= lm
+SRCS= lm78.c lm78_isa.c
+SRCS+= device_if.h bus_if.h isa_if.h
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud