2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

Delete maxilife scripts. The maxilife driver was not ported to

Linux 2.6 and probably never will.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5350 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2008-09-28 16:44:36 +00:00
parent 39b48545a0
commit adcd5def31
4 changed files with 3 additions and 58 deletions

View File

@@ -1,6 +1,9 @@
lm-sensors CHANGES file
-----------------------
SVN-HEAD
maxilife scripts: Delete (driver never ported to Linux 2.6)
3.0.3 (2008-09-28)
libsensors: Avoid namespace pollution
fancontrol: Don't use named pipes when we don't need them (#2319)

View File

@@ -34,12 +34,6 @@ see http://www.lm-sensors.org/wiki/UsefulLinks.
A SysV init script to be installed in /etc/rc.d/init.d/
It inserts the bus and chip modules and starts the sensord daemon.
* prog/maxilife/sysinfo.sh (written in shell, not installed)
Write system information to the HP Maxilife LCD display using writelcd.sh.
* prog/maxilife/writelcd.sh (written in shell, not installed)
Write a string to the HP Maxilife LCD display.
* prog/pwm/pwmconfig (shell script, installed by 'make install')
Formerly pwmtest, tests the pwm (pulse width modulation) outputs of sensors
for their effect on the fans and helps to setup the configfile for fancontrol.

View File

@@ -1,26 +0,0 @@
#! /bin/sh
lnxvers="`uname -s` `uname -r`"
#host="`hostname -s`"
host="`hostname`"
blink="o"
writelcd=/home/rdm/src/lm_sensors-2.5.0/prog/maxilife/writelcd.sh
$writelcd "$host" 3
i=0
while true; do
$writelcd "$lnxvers $blink" 2
if [ $[i == 5] = 1 ]; then
$writelcd "`awk '{ printf("%s %s %s", $1, $2, $3) }' < /proc/loadavg`" 4
i=0
fi
if [ $blink = "o" ]; then
blink=O
else
blink=o
fi
sleep 1
i=$[i+1]
done

View File

@@ -1,26 +0,0 @@
#! /bin/sh
usage() {
echo "usage: $0 <string> <line>"
echo " <string> must be <= 16 characters"
echo " <line> lcd line number, between 1..4"
}
if [ $# != 2 ]; then
usage
exit 1
fi
str=$1
line=$2
if [ $[line < 1 || line > 4] = 1 ]; then
usage
exit 1
fi
sysctl=/proc/sys/dev/sensors/maxilife-nba-i2c-0-14/lcd
printf "%-16.16s" "$str" | od -A n -l > $sysctl$line
exit 0