Changeset 1048
- Timestamp:
- 03/31/01 03:40:53 (11 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 4 modified
-
CHANGES (modified) (2 diffs)
-
mkpatch/Config.in (modified) (1 diff)
-
mkpatch/FILES (modified) (1 diff)
-
mkpatch/mkpatch.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r1038 r1048 25 25 File doc/FAQ: Many updates and additions 26 26 File doc/chips/via686a: Claim support for 686b. 27 File README.thinkpad: new 27 28 File sensors.conf.eg: Adjust as99127f in5 (-12V) and temp2 calculations; 28 29 Add lm87, adm9240, ds1780, lm81 templates; … … 44 45 Module w83781d: Don't reinitialize as99127f chip; this may cause fan/temp 45 46 reading changes 46 Program mkpatch.pl: Fix adm9240 typos, add more chips to Configure.help 47 Program mkpatch.pl: Fix adm9240 typos, add more chips to Configure.help, 48 remove ltc1710 47 49 Program sensord: Add -d (debug) and -p (pid-file) options 48 50 Program sensors: Change reported version from 1.3 to the lm_sensors version; -
lm-sensors/trunk/mkpatch/Config.in
r961 r1048 28 28 dep_tristate ' DDC Monitor EDID EEPROM' CONFIG_SENSORS_DDCMON $CONFIG_SENSORS 29 29 dep_tristate ' EEprom (DIMM) reader ' CONFIG_SENSORS_EEPROM $CONFIG_SENSORS 30 dep_tristate ' Linear Technologies LTC1710 ' CONFIG_SENSORS_LTC1710 $CONFIG_SENSORS31 30 dep_tristate ' Matrix-Orbital LCD Displays' CONFIG_SENSORS_MATORB $CONFIG_MATORB 32 31 fi -
lm-sensors/trunk/mkpatch/FILES
r962 r1048 23 23 kernel/chips/lm80.c drivers/sensors/lm80.c 24 24 kernel/chips/lm87.c drivers/sensors/lm87.c 25 kernel/chips/ltc1710.c drivers/sensors/ltc1710.c26 25 kernel/chips/matorb.c drivers/sensors/matorb.c 27 26 kernel/chips/sis5595.c drivers/sensors/sis5595.c -
lm-sensors/trunk/mkpatch/mkpatch.pl
r1014 r1048 91 91 m@Silicon Integrated Systems Corp. SiS5595@ or 92 92 m@Winbond W83781D, W83782D and W83783S@ or 93 m@EEprom \(DIMM\) reader@ or 94 m@Linear Technologies LTC1710@) { 93 m@EEprom \(DIMM\) reader@ { 95 94 $_ = <INPUT>; 96 95 $_ = <INPUT>; … … 347 346 module which can be inserted and removed while the kernel is 348 347 running. 349 350 You will also need the latest user-space utilties: you can find them351 in the lm_sensors package, which you can download at352 http://www.lm-sensors.nu353 354 Linear Technologies LTC1710355 CONFIG_SENSORS_LTC1710356 If you say yes here you get support for Linear Technologies LTC1710357 sensor chips. This can also be built as a module which can be358 inserted and removed while the kernel is running.359 348 360 349 You will also need the latest user-space utilties: you can find them … … 701 690 obj-$(CONFIG_SENSORS_LM80) += lm80.o 702 691 obj-$(CONFIG_SENSORS_LM87) += lm87.o 703 obj-$(CONFIG_SENSORS_LTC1710) += ltc1710.o704 692 obj-$(CONFIG_SENSORS_SIS5595) += sis5595.o 705 693 obj-$(CONFIG_SENSORS_THMC50) += thmc50.o … … 824 812 ifeq ($(CONFIG_SENSORS_LM87),m) 825 813 M_OBJS += lm87.o 826 endif827 endif828 829 ifeq ($(CONFIG_SENSORS_LTC1710),y)830 L_OBJS += ltc1710.o831 else832 ifeq ($(CONFIG_SENSORS_LTC1710),m)833 M_OBJS += ltc1710.o834 814 endif 835 815 endif
