Changeset 4379
- Timestamp:
- 04/27/07 14:34:17 (6 years ago)
- Location:
- lm-sensors/branches/lm-sensors-3.0.0
- Files:
-
- 5 modified
-
CHANGES (modified) (1 diff)
-
prog/init/README (modified) (1 diff)
-
prog/init/lm_sensors.init (modified) (2 diffs)
-
prog/init/lm_sensors.init.suse (modified) (2 diffs)
-
prog/init/lm_sensors.sysconfig (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/CHANGES
r4375 r4379 4 4 SVN HEAD 5 5 File sensors.conf.eg: Add a dme1737 section 6 File lm_sensors.sysconfig: Delete, now generated by sensors-detect 6 7 Library: Clean up pwm symbol names translation 7 8 Add dme1737 support -
lm-sensors/branches/lm-sensors-3.0.0/prog/init/README
r2042 r4379 13 13 The lm_sensors.init file should be copied to /etc/rc.d/init.d/lm_sensors. 14 14 For more information see the top of the file. 15 It requires the /etc/sysconfig/ sensors file, which identifies15 It requires the /etc/sysconfig/lm_sensors file, which identifies 16 16 the correct modules. 17 17 18 The /etc/sysconfig/lm_sensors file is only a list of modules, 19 as would be determined by running sensors-detect. 20 The lm_sensors.sysconfig file contains the MODULE_# variable definitions; 21 it should be modified for your setup and then 22 copied to /etc/sysconfig/lm_sensors. 18 The /etc/sysconfig/lm_sensors file is generated by running sensors-detect. 19 Once the script is done detecting the hardware monitoring devices, it will 20 list all the required modules in that file, so that they can be loaded 21 automatically at boot time. 23 22 24 23 SuSE users will want to use lm_sensors.init.suse instead, which is -
lm-sensors/branches/lm-sensors-3.0.0/prog/init/lm_sensors.init
r4157 r4379 3 3 # chkconfig: 2345 26 74 4 4 # description: sensors is used for monitoring motherboard sensor values. 5 # config: /etc/sysconfig/ sensors5 # config: /etc/sysconfig/lm_sensors 6 6 # 7 7 # This program is free software; you can redistribute it and/or modify … … 22 22 # http://www.lm-sensors.org 23 23 24 # It uses a config file /etc/sysconfig/ sensors that contains the modules to25 # be loaded/unloaded. That file is sourced into this one.24 # It uses a config file /etc/sysconfig/lm_sensors that contains the modules 25 # to be loaded/unloaded. That file is sourced into this one. 26 26 27 27 # The format of that file a shell script that simply defines the modules -
lm-sensors/branches/lm-sensors-3.0.0/prog/init/lm_sensors.init.suse
r4157 r4379 14 14 # chkconfig: 2345 26 74 15 15 # description: sensors is used for monitoring motherboard sensor values. 16 # config: /etc/sysconfig/ sensors16 # config: /etc/sysconfig/lm_sensors 17 17 # 18 18 # This program is free software; you can redistribute it and/or modify … … 33 33 # http://www.lm-sensors.org 34 34 35 # It uses a config file /etc/sysconfig/ sensors that contains the modules to36 # be loaded/unloaded. That file is sourced into this one.35 # It uses a config file /etc/sysconfig/lm_sensors that contains the modules 36 # to be loaded/unloaded. That file is sourced into this one. 37 37 38 38 # The format of that file a shell script that simply defines the modules -
lm-sensors/branches/lm-sensors-3.0.0/prog/init/lm_sensors.sysconfig
r4157 r4379 1 # This is /etc/sysconfig/lm_sensors.2 #3 # sensors is used for monitoring motherboard sensor values.4 #5 # See also the lm_sensors homepage at:6 # http://www.lm-sensors.org7 #8 # This file is used by /etc/rc.d/init.d/lm_sensors and defines the modules to be9 # loaded/unloaded. This file is sourced into /etc/rc.d/init.d/lm_sensors.10 11 # The format of this file is a shell script that simply defines the modules12 # in order as normal variables with the special names:13 # MODULE_1, MODULE_2, MODULE_3, etc.14 15 #16 # List the modules that are to be loaded for your system17 # Adapted from results of running /usr/sbin/sensors-detect18 #19 # Mine said (I have an ASUS K7M motherboard):20 #21 # #----cut here----22 # # I2C adapter drivers23 # modprobe i2c-matroxfb24 # # modprobe unknown adapter MAVEN:fb0 on i2c-matroxfb using Bit-shift algorithm25 # # modprobe unknown adapter MAVEN:fb0 on i2c-matroxfb using Bit-shift algorithm26 # modprobe i2c-isa27 # # I2C chip drivers28 # modprobe ddcmon29 # modprobe w83781d30 # modprobe via686a31 # #----cut here----32 #33 # Here is my module list34 MODULE_0=i2c-matroxfb35 MODULE_1=i2c-isa36 MODULE_2=ddcmon37 MODULE_3=w83781d38 MODULE_4=via686a
