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

Delete the matorb support script. The matorb driver was never ported to

Linux 2.6, and has nothing to do with sensors anyway.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4526 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2007-06-30 13:40:40 +00:00
parent cc1700958b
commit 1ba9c1837d
4 changed files with 1 additions and 38 deletions

View File

@@ -21,6 +21,7 @@ SVN HEAD
Program i2cdump: Use the new I2C block read function Program i2cdump: Use the new I2C block read function
Program isadump: Detect when address bit 7 is a busy flag Program isadump: Detect when address bit 7 is a busy flag
Fix Super-I/O exit sequence for Winbond/Fintek chips Fix Super-I/O exit sequence for Winbond/Fintek chips
Program matorb/displayit: Delete, obsolete
Program mkpatch: Delete Program mkpatch: Delete
Program fancontrol: Use let for arithmetic evaluation Program fancontrol: Use let for arithmetic evaluation
No longer need awk and grep No longer need awk and grep

View File

@@ -288,9 +288,6 @@ eeprom
ltc1710 ltc1710
ltc1710 two switches only ltc1710 two switches only
matorb
Matrix Orbital LCD displays
pca9540 pca9540
2-channel I2C multiplexer 2-channel I2C multiplexer

View File

@@ -40,9 +40,6 @@ see useful_addresses.html.
A SysV init script to be installed in /etc/rc.d/init.d/ 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. It inserts the bus and chip modules and starts the sensord daemon.
* prog/matorb/displayit.pl (written in Perl, not installed)
A simple Perl script to display a 'screen' on a Matrix Orbital Display.
* prog/maxilife/sysinfo.sh (written in shell, not installed) * prog/maxilife/sysinfo.sh (written in shell, not installed)
Write system information to the HP Maxilife LCD display using writelcd.sh. Write system information to the HP Maxilife LCD display using writelcd.sh.

View File

@@ -1,32 +0,0 @@
#!/usr/bin/perl
# This is a simple perl script to display a 'screen'
# on a Matrix Orbital Display. In this case, this
# script will read the first four lines (up to 20
# chars a line) and display them on the display.
# Written and copywritten (C) by Philip Edelbrock, 1999.
# Turn off the blinking cursor
$temp=`echo "254 84" > /proc/sys/dev/sensors/matorb*/disp`;
$linenum=1;
while (<STDIN>) {
# Reset the position of the cursor to the next line
$temp=`echo "254 71 1 $linenum" > /proc/sys/dev/sensors/matorb*/disp`;
chop;
$_="$_ ";
if (/^(.{1,20})/) {
$_=$1;
$line="";
while (/(.)/gc) {
$temp=ord($1);
$line="$line $temp";
}
$temp=`echo "$line" > /proc/sys/dev/sensors/matorb*/disp`;
}
$linenum+=1;
if ($linenum > 4) { exit; }
}