Connect k8temp(4) to the build.

This commit is contained in:
Rui Paulo 2008-04-12 14:20:22 +00:00
parent f0ded229ee
commit 6f15a9e57a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=178153
4 changed files with 13 additions and 0 deletions

View file

@ -444,8 +444,10 @@ device ichwd
# Temperature sensors:
#
# coretemp: on-die sensor on Intel Core and newer CPUs
# k8temp: on-die sensor on AMD K8 CPUs
#
device coretemp
device k8temp
#---------------------------------------------------------------------------
# ISDN4BSD

View file

@ -189,6 +189,7 @@ dev/hptrr/hptrr_config.c optional hptrr
dev/hwpmc/hwpmc_amd.c optional hwpmc
dev/hwpmc/hwpmc_piv.c optional hwpmc
dev/hwpmc/hwpmc_x86.c optional hwpmc
dev/k8temp/k8temp.c optional k8temp
dev/kbd/kbd.c optional atkbd | sc | ukbd
dev/mem/memutil.c optional mem
dev/nfe/if_nfe.c optional nfe pci

View file

@ -140,6 +140,7 @@ SUBDIR= ${_3dfx} \
${_iwifw} \
${_ixgb} \
joy \
${_k8temp} \
kbdmux \
krpc \
kue \
@ -533,6 +534,7 @@ _ips= ips
_ipw= ipw
_ipwfw= ipwfw
_ixgb= ixgb
_k8temp= k8temp
_linprocfs= linprocfs
_linsysfs= linsysfs
_linux= linux

View file

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/k8temp
KMOD= k8temp
SRCS= k8temp.c bus_if.h device_if.h pci_if.h
.include <bsd.kmod.mk>