]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/commitdiff
The script w_scan_start now generates a channel.conf which is compatible to vdr >1.7
authorDaniel Weismüller <whytea@ipfire.org>
Wed, 17 Apr 2013 11:13:34 +0000 (13:13 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 18 Apr 2013 09:01:59 +0000 (11:01 +0200)
config/w_scan/w_scan_start

index 0f624ac68e8d1b45ce663114b1c0f40ad930c9a5..324d7f9dd2810ba5c41eeae411ef86abf4ec72c3 100755 (executable)
@@ -105,17 +105,17 @@ clear
 rm -rf /tmp/channels.conf
 if [[ "$W_SCAN_TYPE" == *DVB-T* ]]; then
        echo ":->W-SCAN DVB-T $(date +%Y%m%d%H%M)" >>/tmp/channels.conf
-       $WSCAN -f t -c $W_SCAN_COUNTRY -C UTF-8 >>/tmp/channels.conf
+       $WSCAN -f t -c $W_SCAN_COUNTRY -C UTF-8 -o 7 >>/tmp/channels.conf
 fi
 if [[ "$W_SCAN_TYPE" == *DVB-C* ]]; then
        echo ":->W-SCAN DVB-C $(date +%Y%m%d%H%M)" >>/tmp/channels.conf
-       $WSCAN -f c -c $W_SCAN_COUNTRY -C UTF-8 >>/tmp/channels.conf
+       $WSCAN -f c -c $W_SCAN_COUNTRY -C UTF-8 -o 7 >>/tmp/channels.conf
 fi
 if [[ "$W_SCAN_TYPE" == *DVB-S* ]]; then
        for SATELLITE in $W_SCAN_SATELLITE;
        do
                echo ":->W-SCAN DVB-S $SATELLITE $(date +%Y%m%d%H%M)" >>/tmp/channels.conf
-               $WSCAN -f s -s $SATELLITE -C UTF-8 >>/tmp/channels.conf
+               $WSCAN -f s -s $SATELLITE -C UTF-8 -o 7 >>/tmp/channels.conf
        done
 fi