Changeset 988 for lm-sensors/trunk/doc
- Timestamp:
- 01/13/01 18:24:42 (8 years ago)
- Files:
-
- lm-sensors/trunk/doc/progs (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/doc/progs
r837 r988 2 2 `make install', and that usually can be found in the `prog' directory of 3 3 this package. 4 5 6 * doc/developers/editticket (written in shell, not installed) 7 Calls netscape to edit a specific support ticket. 8 9 * doc/developers/readticket (written in shell, not installed) 10 Calls netscape to read a specific support ticket. 4 11 5 12 * prog/config/grab_busses.sh (written in bash and awk, not installed) … … 8 15 and prints to stdout `bus' statements reflecting the currently detected 9 16 adapters. 17 10 18 * prog/daemon/healthd.sh (written in bash, not installed) 11 19 An example of a very simple hardware health monitoring daemon. 20 21 * prog/detect/i2cdetect (written in C, not installed) 22 This program scans your complete I2C or SMBus adapter for connected devices. 23 Not all devices can be detected in this way, though; and it may hang your 24 bus. Syntax: 25 ./i2cdetect 0 26 Here the '0' stands for the bus number (run i2cdetect with no arguments 27 to list all installed busses). 28 12 29 * prog/detect/sensors-detect (written in Perl, installed by 'make install') 13 30 This program tries to detect the available SMBus adapters and the chips … … 15 32 and module options. This program is interactive and will ask you about 16 33 all information it needs. 17 * prog/detect/i2cdetect (written in C, not installed) 18 This program scans your complete I2C or SMBus adapter for connected devices. 19 Not all devices can be detected in this way, though; and it may hang your 20 bus. Syntax: 21 ./i2cdetect 0 22 Here the '0' stands for i2c-0 (check /proc/bus/i2c to find out which bus 23 you need). 34 24 35 * prog/doc/doc-features.pl (written in Perl, not installed) 25 36 This program is used to help us generate driver documentation; it scans … … 29 40 PREFIX is one of more prefixes of chips you want documented; if left out, 30 41 all chips are documented. 42 31 43 * prog/doc/doc-insmod.pl (written in Perl, not installed) 32 44 This program is used to help us generate driver documentation; it reads 33 45 all module information and outputs insmod parameter information. Syntax: 34 46 ./doc-insmod.pl DRIVER 47 35 48 * prog/dump/i2cdump (written in C, not installed) 36 49 This program helps to dump the registers of a I2C device that understands 37 the 'byte data' or 'word data' SMBus protocols. Usual syntax: 50 the 'byte data' or 'word data' and block read SMBus protocols. 51 Usual syntax: 38 52 ./i2cdump 0 0x49 b 39 Here the '0' stands for i2c-0 (check /proc/bus/i2c to find out which bus 40 you need), '0x49' is the device address, and 'b' or 'w' stands for byte 53 Here the '0' stands for the bus number (run i2cdump with no arguments 54 to list all installed busses). 55 0x49' is the device address, and 'b' or 'w' stands for byte 41 56 or word data. 57 42 58 * prog/dump/isadump (written in C, not installed) 43 59 This program helps to dump the registers of LM78-like chips, or more … … 45 61 data register. Usual syntax: 46 62 ./isadump 0x295 0x296 63 47 64 * prog/eeprom/decode-dimms.pl (written in Perl 5, not installed) 48 65 This program decodes the information generated by the `eeprom.o' module. 49 66 It will only work for the installed eeprom module from the src/ directory, 50 67 not for the old one in the i2c/drivers/ directory. 68 69 * prog/hotplug/m7101.o (kernel module, not installed) 70 An experimental kernel module to enable the Acer Labs 7101 PCI device. 71 See prog/hotplug/README for details. 72 73 * prog/matorb/displayit.pl (written in Perl, not installed) 74 A simple Perl script to display a 'screen' on a Matrix Orbital Display. 75 76 * prog/maxilife/sysinfo.sh (written in shell, not installed) 77 Write system information to the HP Maxilife LCD display using writelcd.sh. 78 79 * prog/maxilife/writelcd.sh (written in shell, not installed) 80 Write a string to the HP Maxilife LCD display. 81 51 82 * prog/mkdev/mkdev.sh (written in bash, not installed) 52 83 This script creates the /dev/i2c-* files. Please check the source before 53 84 you run it, as you may need to set some variables first. 85 54 86 * prog/sensord/sensord (written in C, installed by `make install-prog-sensord') 55 87 This daemon can be used to periodically log sensor readings from … … 57 89 when a sensor alarm is signalled; for example, if a fan fails, a temperature 58 90 limit is exceeded, etc. 91 59 92 * prog/sensors/sensors (written in C, installed by `make install') 60 93 This pretty-prints the information provided by the modules. It is a normal 61 console application, using std in and stdout. It is essential, because94 console application, using stdout. It is essential, because 62 95 unlike the raw /proc/sys/dev/sensors/*/* files, it takes your configuration 63 96 file into account. 64 * prog/xeon/decode-xeon.pl (written in perl, not installed) 97 98 * prog/xeon/decode-xeon.pl (written in Perl, not installed) 65 99 ID ROM data decoding for Xeon processors.
