Changeset 2231
- Timestamp:
- 01/18/04 18:39:01 (5 years ago)
- Files:
-
- lm-sensors/trunk/mkpatch/Config.in (modified) (2 diffs)
- lm-sensors/trunk/mkpatch/FILES (modified) (2 diffs)
- lm-sensors/trunk/mkpatch/mkpatch.pl (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/mkpatch/Config.in
r2229 r2231 18 18 dep_tristate ' Analog Devices ADM1026' CONFIG_SENSORS_ADM1026 $CONFIG_I2C $CONFIG_I2C_PROC 19 19 dep_tristate ' Analog Devices ADM9240 and compatibles' CONFIG_SENSORS_ADM9240 $CONFIG_I2C $CONFIG_I2C_PROC 20 dep_tristate ' Asus ASB100' CONFIG_SENSORS_ASB100 $CONFIG_I2C $CONFIG_I2C_PROC 20 21 dep_tristate ' Dallas DS1621 and DS1625' CONFIG_SENSORS_DS1621 $CONFIG_I2C $CONFIG_I2C_PROC 21 22 dep_tristate ' Fujitsu-Siemens Poseidon' CONFIG_SENSORS_FSCPOS $CONFIG_I2C $CONFIG_I2C_PROC … … 42 43 dep_tristate ' VIA VT8231 Integrated Sensors' CONFIG_SENSORS_VT8231 $CONFIG_I2C $CONFIG_I2C_PROC $CONFIG_I2C_ISA 43 44 dep_tristate ' Winbond W83781D, W83782D, W83783S, W83627HF, Asus AS99127F' CONFIG_SENSORS_W83781D $CONFIG_I2C $CONFIG_I2C_PROC 45 dep_tristate ' Winbond W83L785TS-S' CONFIG_SENSORS_W83L785TS $CONFIG_I2C $CONFIG_I2C_PROC 44 46 bool 'Other I2C devices' CONFIG_SENSORS_OTHER 45 47 if [ "$CONFIG_SENSORS_OTHER" = "y" ] ; then lm-sensors/trunk/mkpatch/FILES
r2229 r2231 23 23 kernel/chips/adm1026.c drivers/sensors/adm1026.c 24 24 kernel/chips/adm9240.c drivers/sensors/adm9240.c 25 kernel/chips/asb100.c drivers/sensors/asb100.c 25 26 kernel/chips/bt869.c drivers/sensors/bt869.c 26 27 kernel/chips/ddcmon.c drivers/sensors/ddcmon.c … … 54 55 kernel/chips/vt8231.c drivers/sensors/vt8231.c 55 56 kernel/chips/w83781d.c drivers/sensors/w83781d.c 57 kernel/chips/w83l785ts.c drivers/sensors/w83l785ts.c 56 58 kernel/include/sensors_compat.h include/linux/sensors_compat.h 57 59 kernel/include/sensors_vid.h include/linux/sensors_vid.h lm-sensors/trunk/mkpatch/mkpatch.pl
r2229 r2231 100 100 m@Analog Devices ADM1026@ or 101 101 m@Analog Devices ADM9240 and compatibles@ or 102 m@Asus ASB100@ or 102 103 m@Dallas DS1621 and DS1625@ or 103 104 m@Fujitsu-Siemens Poseidon@ or … … 121 122 m@Via VT82C686A/B@ or 122 123 m@Winbond W83781D, W83782D, W83783S, W83627HF, AS99127F@ or 124 m@Winbond W83L785TS-S@ or 123 125 m@EEprom \(DIMM\) reader@) { 124 126 $_ = <INPUT>; … … 315 317 http://www.lm-sensors.nu 316 318 319 Asus ASB100 320 CONFIG_SENSORS_ASB100 321 If you say yes here you get support for the Asus ASB100 (aka 322 "Bach") sensor chip. This can also be built as a module. 323 324 You will also need the latest user-space utilities: you can find 325 them in the lm_sensors package, which you can download at 326 http://www.lm-sensors.nu/ 327 317 328 Dallas DS1621 and DS1625 318 329 CONFIG_SENSORS_DS1621 … … 581 592 in the lm_sensors package, which you can download at 582 593 http://www.lm-sensors.nu 594 595 Winbond W83L785TS-S 596 CONFIG_SENSORS_W83L785TS 597 If you say yes here you get support for the Winbond W83L785TS-S 598 sensor chip. This can also be built as a module. 599 600 You will also need the latest user-space utilities: you can find 601 them in the lm_sensors package, which you can download at 602 http://www.lm-sensors.nu/ 583 603 584 604 EEprom (DIMM) reader … … 866 886 obj-$(CONFIG_SENSORS_ADM1026) += adm1026.o 867 887 obj-$(CONFIG_SENSORS_ADM9240) += adm9240.o 888 obj-$(CONFIG_SENSORS_ASB100) += asb100.o 868 889 obj-$(CONFIG_SENSORS_BT869) += bt869.o 869 890 obj-$(CONFIG_SENSORS_DDCMON) += ddcmon.o … … 895 916 obj-$(CONFIG_SENSORS_VT8231) += vt8231.o 896 917 obj-$(CONFIG_SENSORS_W83781D) += w83781d.o 918 obj-$(CONFIG_SENSORS_W83L785TS) += w83l785ts.o 897 919 898 920 include $(TOPDIR)/Rules.make
