Changeset 4373
- Timestamp:
- 04/20/07 15:32:53 (2 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/prog/rrd/Makefile (modified) (1 diff)
- lm-sensors/trunk/prog/rrd/README (modified) (4 diffs)
- lm-sensors/trunk/prog/rrd/sens_create_rrd (modified) (1 diff)
- lm-sensors/trunk/prog/rrd/sens_day.in (modified) (2 diffs)
- lm-sensors/trunk/prog/rrd/sens_update_rrd (modified) (1 diff)
- lm-sensors/trunk/prog/rrd/sens_week.in (modified) (2 diffs)
- lm-sensors/trunk/prog/rrd/summ_week.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4370 r4373 8 8 Man page sensors.conf.5: Update the chip statement section 9 9 Program isadump: Detect when address bit 7 is a busy flag 10 Program sens_update_rrd: Support non-i2c devices (hwmon class) 10 Program rrd: Support non-i2c devices (hwmon class) 11 Add missing shell declarations 12 Update URI 11 13 Program sensors: Drop ddcmon and eeprom support 12 14 Add dme1737 support lm-sensors/trunk/prog/rrd/Makefile
r2982 r4373 14 14 #SENSDEV=w83781d-isa-0290 15 15 #SENSDIR=/proc/sys/dev/sensors/$(SENSDEV) 16 # 2.6 kernels 17 SENSDEV=0-0290 18 SENSDIR=/sys/bus/i2c/devices/$(SENSDEV) 16 # 2.6 kernels up to 2.6.13 17 #SENSDEV=0-0290 18 #SENSDIR=/sys/bus/i2c/devices/$(SENSDEV) 19 # 2.6.14 and later kernels 20 SENSDEV=hwmon0 21 SENSDIR=/sys/class/hwmon/$(SENSDEV)/device 19 22 ################################################ 20 23 # Everything below here should be fine lm-sensors/trunk/prog/rrd/README
r3075 r4373 7 7 The RRD (Round Robin Database) package is REQUIRED. 8 8 Get this package from 9 http:// people.ee.ethz.ch/~oetiker/webtools/rrdtool/9 http://oss.oetiker.ch/rrdtool 10 10 11 11 A web server with CGI support is required. … … 27 27 that does not require RRD, try ../tellerstats. 28 28 29 The RRD scripts read /proc entries and do not use libsensors.29 The RRD scripts read /proc or /sys entries and do not use libsensors. 30 30 Therefore the scale factors in /etc/sensors.conf are not used, 31 31 and you may have to change the scale factors in the cgi scripts. … … 46 46 before you try this! 47 47 - Get RRD, make and install it 48 - cd /usr/local; ln -s rrdtool-x.y.z rrdtool49 - cd back to here50 48 - Edit the top of the Makefile. Do NOT skip this step. 51 49 The defaults will probably not work for you. … … 64 62 The sensor device in your system 65 63 (isa recommended over i2c if both are available) 66 SENSDEV=w83781d-isa-0290 (2.4 kernel - look in /proc/sys/dev/sensors) 67 SENSDEV=0-0290 (2.6 kernel - look in /sys/i2c/bus/devices) 64 2.4 kernel - look in /proc/sys/dev/sensors: 65 SENSDEV=w83781d-isa-0290 66 2.6 kernel up to 2.6.13 - look in /sys/i2c/bus/devices: 67 SENSDEV=0-0290 68 2.6.14+ kernel - look in /sys/class/hwmon: 69 SENSDEV=hwmon0 68 70 - make 69 71 - (as root) make install, which does the following. lm-sensors/trunk/prog/rrd/sens_create_rrd
r1618 r4373 1 #!/bin/sh 1 2 # 2 3 # sens_create_rrd - lm-sensors/trunk/prog/rrd/sens_day.in
r1955 r4373 6 6 </HEAD> 7 7 <BODY> 8 <!-- From the lm_sensors package http://www.lm-sensors.nu MDS 4/01 -->9 8 <H1>ONE DAY VIEW</H1> 10 9 See also: <br> … … 219 218 220 219 This page generated with data and scripts from 221 <a href="http://www.lm-sensors. nu/">The lm_sensors drivers</a>;220 <a href="http://www.lm-sensors.org/">the lm_sensors project</a>; 222 221 the data are stored in a Round Robin Database and 223 222 the graphs are generated by 224 <a href="http:// people.ee.ethz.ch/~oetiker/webtools/rrdtool/">223 <a href="http://oss.oetiker.ch/rrdtool/"> 225 224 RRD</a>. 226 225 lm-sensors/trunk/prog/rrd/sens_update_rrd
r4369 r4373 1 #!/bin/sh 1 2 # 2 3 # sens_update_rrd - lm-sensors/trunk/prog/rrd/sens_week.in
r1955 r4373 6 6 </HEAD> 7 7 <BODY> 8 <!-- From the lm_sensors package http://www.lm-sensors.nu MDS 4/01 -->9 8 <H1>ONE WEEK VIEW</H1> 10 9 See also: <br> … … 219 218 220 219 This page generated with data and scripts from 221 <a href="http://www.lm-sensors. nu/">The lm_sensors drivers</a>;220 <a href="http://www.lm-sensors.org/">the lm_sensors project</a>; 222 221 the data are stored in a Round Robin Database and 223 222 the graphs are generated by 224 <a href="http:// people.ee.ethz.ch/~oetiker/webtools/rrdtool/">223 <a href="http://oss.oetiker.ch/rrdtool/"> 225 224 RRD</a>. 226 225 lm-sensors/trunk/prog/rrd/summ_week.in
r1955 r4373 6 6 </HEAD> 7 7 <BODY> 8 <!-- From the lm_sensors package http://www.lm-sensors.nu MDS 4/01 -->9 8 <H1>ONE WEEK SUMMARY VIEW</H1> 10 9 See also: <br> … … 91 90 92 91 This page generated with data and scripts from 93 <a href="http://www.lm-sensors. nu/">The lm_sensors drivers</a>;92 <a href="http://www.lm-sensors.org/">the lm_sensors project</a>; 94 93 the data are stored in a Round Robin Database and 95 94 the graphs are generated by 96 <a href="http:// people.ee.ethz.ch/~oetiker/webtools/rrdtool/">95 <a href="http://oss.oetiker.ch/rrdtool/"> 97 96 RRD</a>. 98 97
