2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-30 13:57:41 +00:00

Add support for the 82801AA (ICH).

git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5082 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare 2007-12-19 13:27:40 +00:00
parent 8f18d66447
commit 1b4d863eaa
2 changed files with 4 additions and 2 deletions

View File

@ -14,6 +14,7 @@ SVN
sensors.conf.eg: Fix voltage value references (g520sm, lm80, pc87366)
sensors-detect: Drop PCA9540 detection
Improve sysconfig and modprobe.d integration
unhide_ICH_SMBus: Add support for the 82801AA (ICH)
3.0.0 (2007-11-24)
Makefile: Fix MODULE_DIR usage in etc

View File

@ -10,6 +10,7 @@
#
# Supports the following Intel ICH chipsets:
# PCI ID
# ICH 8086:2410
# ICH2 8086:2440
# ICH2-M 8086:244C
# ICH3 8086:2480
@ -33,10 +34,10 @@ if [ -n "$smbus" ] ; then
exit
fi
intel=`lspci -n -s $device.0 | grep -i '8086:24[48CD][0C]'`
intel=`lspci -n -s $device.0 | grep -i '8086:24[148CD][0C]'`
if [ -z "$intel" ] ; then
echo "Not for your chipset - Intel (ICH) only"
echo "Supported: ICH2, ICH2-M, ICH3, ICH3-M, ICH4, ICH4-M, ICH5"
echo "Supported: ICH, ICH2, ICH2-M, ICH3, ICH3-M, ICH4, ICH4-M, ICH5"
exit 255;
fi
modprobe fakephp &> /dev/null