Changeset 2229
- Timestamp:
- 01/18/04 10:18:25 (5 years ago)
- Files:
-
- lm-sensors/trunk/mkpatch/Config.in (modified) (1 diff)
- lm-sensors/trunk/mkpatch/FILES (modified) (1 diff)
- lm-sensors/trunk/mkpatch/mkpatch.pl (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/mkpatch/Config.in
r1777 r2229 25 25 dep_tristate ' HP Maxilife' CONFIG_SENSORS_MAXILIFE $CONFIG_I2C $CONFIG_I2C_PROC 26 26 dep_tristate ' ITE 8705/8712, SiS950' CONFIG_SENSORS_IT87 $CONFIG_I2C $CONFIG_I2C_PROC 27 dep_tristate ' Maxim MAX6650, MAX6651' CONFIG_SENSORS_MAX6650 $CONFIG_I2C $CONFIG_I2C_PROC 27 28 dep_tristate ' Myson MTP008' CONFIG_SENSORS_MTP008 $CONFIG_I2C $CONFIG_I2C_PROC 28 29 dep_tristate ' National Semiconductor LM75 and compatibles' CONFIG_SENSORS_LM75 $CONFIG_I2C $CONFIG_I2C_PROC 29 30 dep_tristate ' National Semiconductor LM78' CONFIG_SENSORS_LM78 $CONFIG_I2C $CONFIG_I2C_PROC 30 31 dep_tristate ' National Semiconductor LM80' CONFIG_SENSORS_LM80 $CONFIG_I2C $CONFIG_I2C_PROC 32 dep_tristate ' National Semiconductor LM83' CONFIG_SENSORS_LM83 $CONFIG_I2C $CONFIG_I2C_PROC 31 33 dep_tristate ' National Semiconductor LM85, Analog Devices ADM1027' CONFIG_SENSORS_LM85 $CONFIG_I2C $CONFIG_I2C_PROC 32 34 dep_tristate ' National Semiconductor LM87' CONFIG_SENSORS_LM87 $CONFIG_I2C $CONFIG_I2C_PROC 35 dep_tristate ' National Semiconductor LM90, Analog Devices ADM1032' CONFIG_SENSORS_LM90 $CONFIG_I2C $CONFIG_I2C_PROC 33 36 dep_tristate ' National Semiconductor LM92' CONFIG_SENSORS_LM92 $CONFIG_I2C $CONFIG_I2C_PROC 34 37 dep_tristate ' Silicon Integrated Systems Corp. SiS5595' CONFIG_SENSORS_SIS5595 $CONFIG_I2C $CONFIG_I2C_PROC $CONFIG_I2C_ISA lm-sensors/trunk/mkpatch/FILES
r2186 r2229 36 36 kernel/chips/lm78.c drivers/sensors/lm78.c 37 37 kernel/chips/lm80.c drivers/sensors/lm80.c 38 kernel/chips/lm83.c drivers/sensors/lm83.c 38 39 kernel/chips/lm85.c drivers/sensors/lm85.c 39 40 kernel/chips/lm87.c drivers/sensors/lm87.c 41 kernel/chips/lm90.c drivers/sensors/lm90.c 40 42 kernel/chips/lm92.c drivers/sensors/lm92.c 41 43 kernel/chips/matorb.c drivers/sensors/matorb.c 44 kernel/chips/max6650.c drivers/sensors/max6650.c 42 45 kernel/chips/maxilife.c drivers/sensors/maxilife.c 43 46 kernel/chips/mtp008.c drivers/sensors/mtp008.c lm-sensors/trunk/mkpatch/mkpatch.pl
r2139 r2229 107 107 m@HP Maxilife@ or 108 108 m@ITE 8705, 8712, Sis950@ or 109 m@Maxim MAX6650, MAX6651@ or 109 110 m@Myson MTP008@ or 110 111 m@National Semiconductors LM75 and compatibles@ or 111 112 m@National Semiconductors LM78@ or 112 113 m@National Semiconductors LM80@ or 113 m@National Semiconductors LM85 and compatibles@ or 114 m@National Semiconductors LM83@ or 115 m@National Semiconductors LM85@ or 114 116 m@National Semiconductors LM87@ or 117 m@National Semiconductors LM90@ or 118 m@National Semiconductors LM92@ or 115 119 m@Silicon Integrated Systems Corp. SiS5595 Sensor@ or 116 120 m@Texas Instruments THMC50 / Analog Devices ADM1022@ or … … 380 384 http://www.lm-sensors.nu 381 385 386 Maxim MAX6650, MAX6651 387 CONFIG_SENSORS_MAX6650 388 If you say yes here you get support for the Maxim MAX6650 and 389 MAX6651 sensor chips. This can also be built as a module. 390 391 You will also need the latest user-space utilties: you can find them 392 in the lm_sensors package, which you can download at 393 http://www.lm-sensors.nu 394 382 395 Myson MTP008 383 396 CONFIG_SENSORS_MTP008 … … 422 435 http://www.lm-sensors.nu 423 436 437 National Semiconductor LM83 438 CONFIG_SENSORS_LM83 439 If you say yes here you get support for the National Semiconductor 440 LM83 sensor chip. This can also be built as a module. 441 442 You will also need the latest user-space utilities: you can find 443 them in the lm_sensors package, which you can download at 444 http://www.lm-sensors.nu/ 445 424 446 National Semiconductor LM85 425 447 CONFIG_SENSORS_LM85 … … 443 465 in the lm_sensors package, which you can download at 444 466 http://www.lm-sensors.nu 467 468 National Semiconductor LM90 469 CONFIG_SENSORS_LM90 470 If you say yes here you get support for the National Semiconductor 471 LM90 and Analog Devices ADM1032 sensor chips. This can also be 472 built as a module. 473 474 You will also need the latest user-space utilities: you can find 475 them in the lm_sensors package, which you can download at 476 http://www.lm-sensors.nu/ 445 477 446 478 National Semiconductor LM92 … … 846 878 obj-$(CONFIG_SENSORS_LM78) += lm78.o 847 879 obj-$(CONFIG_SENSORS_LM80) += lm80.o 880 obj-$(CONFIG_SENSORS_LM83) += lm83.o 848 881 obj-$(CONFIG_SENSORS_LM85) += lm85.o 849 882 obj-$(CONFIG_SENSORS_LM87) += lm87.o 883 obj-$(CONFIG_SENSORS_LM90) += lm90.o 850 884 obj-$(CONFIG_SENSORS_LM92) += lm92.o 885 obj-$(CONFIG_SENSORS_MAX6650) += max6650.o 851 886 obj-$(CONFIG_SENSORS_MAXILIFE) += maxilife.o 852 887 obj-$(CONFIG_SENSORS_MTP008) += mtp008.o
