All of lore.kernel.org
 help / color / mirror / Atom feed
* LM sensors into kernel?
@ 2002-12-01 13:27 Pavel Machek
  2002-12-01 17:03 ` Alan Cox
  0 siblings, 1 reply; 9+ messages in thread
From: Pavel Machek @ 2002-12-01 13:27 UTC (permalink / raw)
  To: alan, kernel list

Hi!

What is preventing lm-sensors from being merged into kernel? Alan,
given nice patch for current kernel, would you accept lm-sensors into
your kernel?
								Pavel
-- 
Worst form of spam? Adding advertisment signatures ala sourceforge.net.
What goes next? Inserting advertisment *into* email?

^ permalink raw reply	[flat|nested] 9+ messages in thread
* RE: LM sensors into kernel?
@ 2002-12-02 23:50 Manish Lachwani
  2002-12-05 10:42 ` Pavel Machek
  0 siblings, 1 reply; 9+ messages in thread
From: Manish Lachwani @ 2002-12-02 23:50 UTC (permalink / raw)
  To: 'Jeff Garzik', hps; +Cc: linux-kernel

Sometime back, I had put the sensors support in the 2.4.17 SMP kernel. It
did not give me any problems and we have been using it successfully. The
following are some of the details:

Created a CONFIG_SENSORS entry and an entry for every sensor type

#
# Hardware sensors support
#
CONFIG_SENSORS=y
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1024 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCPOS is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_MAXILIFE is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_MTP008 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_W83781D is not set
CONFIG_SENSORS_W83782D=y

And in the Makefile:

DRIVERS-$(CONFIG_SENSORS) += drivers/sensors/sensor.o

Put all the sensor related drivers in drivers/sensors  and created a
Makefile:

O_TARGET := sensor.o

export-objs     := sensors.o

obj-$(CONFIG_SENSORS)           += sensors.o
obj-$(CONFIG_SENSORS_ADM1021)   += adm1021.o
obj-$(CONFIG_SENSORS_ADM1024)   += adm1024.o
obj-$(CONFIG_SENSORS_ADM1025)   += adm1025.o
obj-$(CONFIG_SENSORS_ADM9240)   += adm9240.o
obj-$(CONFIG_SENSORS_BT869)     += bt869.o
obj-$(CONFIG_SENSORS_DDCMON)    += ddcmon.o
obj-$(CONFIG_SENSORS_DS1621)    += ds1621.o
obj-$(CONFIG_SENSORS_EEPROM)    += eeprom.o
obj-$(CONFIG_SENSORS_FSCPOS)    += fscpos.o
obj-$(CONFIG_SENSORS_GL518SM)   += gl518sm.o
obj-$(CONFIG_SENSORS_GL520SM)   += gl520sm.o
obj-$(CONFIG_SENSORS_IT87)      += it87.o
obj-$(CONFIG_SENSORS_LM75)      += lm75.o
obj-$(CONFIG_SENSORS_LM78)      += lm78.o
obj-$(CONFIG_SENSORS_LM80)      += lm80.o
obj-$(CONFIG_SENSORS_LM87)      += lm87.o
obj-$(CONFIG_SENSORS_MAXILIFE)  += maxilife.o
obj-$(CONFIG_SENSORS_MTP008)    += mtp008.o
obj-$(CONFIG_SENSORS_SIS5595)   += sis5595.o
obj-$(CONFIG_SENSORS_THMC50)    += thmc50.o
obj-$(CONFIG_SENSORS_VIA686A)   += via686a.o
obj-$(CONFIG_SENSORS_W83781D)   += w83781d.o
obj-$(CONFIG_SENSORS_W83782D)   += w83782d.o



-----Original Message-----
From: Jeff Garzik [mailto:jgarzik@pobox.com]
Sent: Monday, December 02, 2002 2:52 PM
To: hps@intermeta.de
Cc: linux-kernel@vger.kernel.org
Subject: Re: LM sensors into kernel?


Henning P. Schmiedehausen wrote:
> Bill Davidsen <davidsen@tmr.com> writes:
> 
> 
>>Okay, thanks. I was hoping since lm_sensors were proposed before the
>>freeze, relatively stable, and highly useful that they might get in.
> 
> 
> As most of the I2C code is in, I would consider the lm_sensors mainly
> as "drivers" so they wouldn't be hit by the freeze. 


To tangent a bit, I was somewhat disappointed when the I2C kernel 
merging guy disappeared... :(

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2002-12-05 21:12 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-01 13:27 LM sensors into kernel? Pavel Machek
2002-12-01 17:03 ` Alan Cox
2002-12-02 18:37   ` Bill Davidsen
2002-12-02 18:42     ` Alan Cox
2002-12-02 19:18       ` Bill Davidsen
2002-12-02 22:31         ` Henning P. Schmiedehausen
2002-12-02 22:52           ` Jeff Garzik
  -- strict thread matches above, loose matches on Subject: below --
2002-12-02 23:50 Manish Lachwani
2002-12-05 10:42 ` Pavel Machek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.