User Tools

Site Tools


mld:tutorials:pearl_display

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

mld:tutorials:pearl_display [2013/11/27 20:47]
skippy Formatierung angepasst
mld:tutorials:pearl_display [2013/12/30 17:12] (current)
Line 97: Line 97:
  
 > t-bird > t-bird
 +
 +
 +===== kryptische Zeichen und kein Mld-Logo beim Runterfahren =====
 +
 +> Im Verzeichnis:​
 +
 +<​code>​
 +/​mnt/​system/​etc/​init.d
 +</​code>​
 +
 +> gibt es eine Datei:
 +
 +<​code>​
 +graphlcd
 +</​code>​
 +
 +> In dieser Datei gibt es eine Sektion "​stop)"​ und dort steht der erneute Start von graphlcd. Das verursacht das komische Bild beim runterfahren. ​
 +
 +> Ich habe das auskommentiert und die Datei sieht bei mir jetzt so aus:
 +
 +<​code>​
 +#!/bin/sh
 +
 +case "​$1"​ in
 +        start)
 +                ;;
 +        stop)
 +                . /​etc/​init.d/​rc.functions
 +                . /​etc/​rc.shutdown
 +                #echo "​Starting Graphlcd:"​
 +                #showtext -c /​etc/​graphlcd.conf $GRAPHLCD_SHOW_TIMERS_DISPLAY -e iso8859-0 -f fnt:/​etc/​vdr/​plugins/​graphlcd/​fonts/​f8n.fnt 'Next Timer:'​ "​`mydate -d $utctime`"​ "​$filename"​
 +
 +                #sleep 2
 +                #if [ -e "/​usr/​bin/​perl"​ ]; then
 +                        #​graphlcd-showtimer
 +                #fi
 +                ;;
 +        init)
 +                stop=1
 +                ;;
 +        *)
 +                echo "Usage $0 {start | stop}" >&2
 +                exit 1
 +esac
 +</​code>​
 +
 +> Nach dem Auskommentieren einmal rebooten und wohlfühlen beim nächsten Stop des VDR.
  
mld/tutorials/pearl_display.1385581625.txt.gz · Last modified: 2013/11/27 14:47 (external edit)