Changeset 1423
- Timestamp:
- 07/05/02 20:05:46 (11 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 3 modified
-
kernel/busses/Module.mk (modified) (2 diffs)
-
kernel/chips/Module.mk (modified) (4 diffs)
-
mkpatch/FILES (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/busses/Module.mk
r1351 r1423 25 25 # defined value verbatim into the command-list of rules... 26 26 # These targets are NOT included in 'mkpatch' ... 27 KERNELBUSSESTARGETS := $(MODULE_DIR)/i2c-savage4.o 27 28 28 29 29 # These targets ARE included in 'mkpatch' ... … … 54 54 ifneq ($(shell if grep -q '^CONFIG_I2C_PIIX4=y' $(LINUX)/.config; then echo 1; fi),1) 55 55 KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-piix4.o 56 endif 57 ifneq ($(shell if grep -q '^CONFIG_I2C_SAVAGE4=y' $(LINUX)/.config; then echo 1; fi),1) 58 KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-savage4.o 56 59 endif 57 60 # don't compile unless alpha because of kernel include-file dependencies -
lm-sensors/trunk/kernel/chips/Module.mk
r1419 r1423 25 25 # defined value verbatim into the command-list of rules... 26 26 # These targets are NOT included in 'mkpatch' ... 27 KERNELCHIPSTARGETS := $(MODULE_DIR)/pcf8591.o28 27 KERNELCHIPSTARGETS += $(MODULE_DIR)/smbus-arp.o 29 KERNELCHIPSTARGETS += $(MODULE_DIR)/smsc47m1.o 30 KERNELCHIPSTARGETS += $(MODULE_DIR)/vt1211.o 28 31 29 32 30 # These targets ARE included in 'mkpatch', except for LTC1710, which we … … 83 81 KERNELCHIPSTARGETS += $(MODULE_DIR)/lm87.o 84 82 endif 83 ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM92=y' $(LINUX)/.config; then echo 1; fi),1) 84 KERNELCHIPSTARGETS += $(MODULE_DIR)/lm92.o 85 endif 85 86 ifneq ($(shell if grep -q '^CONFIG_SENSORS_LTC1710=y' $(LINUX)/.config; then echo 1; fi),1) 86 87 KERNELCHIPSTARGETS += $(MODULE_DIR)/ltc1710.o … … 98 99 KERNELCHIPSTARGETS += $(MODULE_DIR)/pcf8574.o 99 100 endif 101 ifneq ($(shell if grep -q '^CONFIG_SENSORS_PCF8591=y' $(LINUX)/.config; then echo 1; fi),1) 102 KERNELCHIPSTARGETS += $(MODULE_DIR)/pcf8591.o 103 endif 100 104 ifneq ($(shell if grep -q '^CONFIG_SENSORS_SIS5595=y' $(LINUX)/.config; then echo 1; fi),1) 101 105 KERNELCHIPSTARGETS += $(MODULE_DIR)/sis5595.o 106 endif 107 ifneq ($(shell if grep -q '^CONFIG_SENSORS_SMSC47M1=y' $(LINUX)/.config; then echo 1; fi),1) 108 KERNELCHIPSTARGETS += $(MODULE_DIR)/smsc47m1.o 102 109 endif 103 110 ifneq ($(shell if grep -q '^CONFIG_SENSORS_THMC50=y' $(LINUX)/.config; then echo 1; fi),1) … … 110 117 KERNELCHIPSTARGETS += $(MODULE_DIR)/via686a.o 111 118 endif 112 ifneq ($(shell if grep -q '^CONFIG_SENSORS_ LM92=y' $(LINUX)/.config; then echo 1; fi),1)113 KERNELCHIPSTARGETS += $(MODULE_DIR)/ lm92.o119 ifneq ($(shell if grep -q '^CONFIG_SENSORS_VT1211=y' $(LINUX)/.config; then echo 1; fi),1) 120 KERNELCHIPSTARGETS += $(MODULE_DIR)/vt1211.o 114 121 endif 115 122 -
lm-sensors/trunk/mkpatch/FILES
r1352 r1423 7 7 kernel/busses/i2c-isa.c drivers/i2c/i2c-isa.c 8 8 kernel/busses/i2c-piix4.c drivers/i2c/i2c-piix4.c 9 kernel/busses/i2c-savage4.c drivers/i2c/i2c-savage4.c 9 10 kernel/busses/i2c-sis5595.c drivers/i2c/i2c-sis5595.c 10 11 kernel/busses/i2c-tsunami.c drivers/i2c/i2c-tsunami.c … … 30 31 kernel/chips/lm80.c drivers/sensors/lm80.c 31 32 kernel/chips/lm87.c drivers/sensors/lm87.c 33 kernel/chips/lm92.c drivers/sensors/lm92.c 32 34 kernel/chips/matorb.c drivers/sensors/matorb.c 33 35 kernel/chips/maxilife.c drivers/sensors/maxilife.c 34 36 kernel/chips/mtp008.c drivers/sensors/mtp008.c 37 kernel/chips/pcf8574.c drivers/sensors/pcf8574.c 38 kernel/chips/pcf8591.c drivers/sensors/pcf8591.c 35 39 kernel/chips/sis5595.c drivers/sensors/sis5595.c 40 kernel/chips/smsc47m1.c drivers/sensors/smsc47m1.c 36 41 kernel/chips/thmc50.c drivers/sensors/thmc50.c 37 42 kernel/chips/via686a.c drivers/sensors/via686a.c 43 kernel/chips/vt1211.c drivers/sensors/vt1211.c 38 44 kernel/chips/w83781d.c drivers/sensors/w83781d.c 39 45 kernel/include/sensors.h include/linux/sensors.h
