source: ipk/source/radiologos_aafmode_0_1/CONTROL/preinst @ 23354

Last change on this file since 23354 was 23354, checked in by nit, 11 years ago

[titan] update radiologo for new tpk

  • Property svn:executable set to *
File size: 808 bytes
Line 
1#!/bin/sh
2#
3TMP=/tmp/.radiologos
4echo "syncing disk"
5sync
6
7model=`cat /etc/model`
8echo""
9echo "Checking your Boxtype...."
10echo "Some Plugins will not work correctly on your $model!"
11echo ""
12if [ "$model" = "" ]; then
13        echo "Sorry! This Plugin is not available for your $model because it will not work correctly!!!"
14        echo "Aborting installation..."
15        exit 1
16else
17        echo "Boxtype: $model OK"
18fi
19
20echo "installing radiologo ..."
21buildgroup=`cat /etc/.buildgroup`
22echo "checking OS"       
23if  [ `cat /etc/motd | grep $buildgroup | grep M | grep rev | wc -l` -eq 0 ]; then               
24        echo ---------------------------                 
25        echo DONT USE this IPK Package!!                 
26        echo ---                 
27        echo Only for $buildgroup Image!!               
28        echo ---------------------------                 
29        exit 1           
30fi
31rm -rf /var/usr/local/share/enigma2/radio.mvi
32exit 0
Note: See TracBrowser for help on using the repository browser.