From: <rap...@us...> - 2004-01-07 19:23:00
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv25755/scripts/scripts Modified Files: blankscreen lm_sensors Log Message: cosmetic changes, going for a release Index: blankscreen =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/blankscreen,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- blankscreen 7 Jan 2004 19:08:17 -0000 1.3 +++ blankscreen 7 Jan 2004 19:22:57 -0000 1.4 @@ -41,9 +41,9 @@ /usr/bin/setterm -powersave off < /dev/tty$i /usr/bin/setterm -blank 0 < /dev/tty$i /usr/bin/setterm -powersave off < /dev/tty$i - echo -n " $i" + echo -n "$i " done - echo " done!" + print_status success ;; stop) ;; Index: lm_sensors =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/lm_sensors,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- lm_sensors 7 Jan 2004 19:08:17 -0000 1.7 +++ lm_sensors 7 Jan 2004 19:22:57 -0000 1.8 @@ -38,6 +38,7 @@ case "$1" in start) + echo "Loading lm-sensors drivers: " # # mandatory modules # @@ -56,8 +57,10 @@ # needed example config for the epia6000+ motherboard # echo "123.0 128.0 0.0" > /proc/sys/dev/sensors/vt1211-isa-6000/temp3 + print_status success ;; stop) + echo "Unloading lm-sensors drivers: " # # undo :) # @@ -68,7 +71,7 @@ #/sbin/rmmod i2c-proc #/sbin/rmmod i2c-dev #/sbin/rmmod i2c-core - + print_status success ;; restart) $0 stop |