source: ipk/source/players_myvideo_1_0/CONTROL/preinst@ 4759

Last change on this file since 4759 was 4759, checked in by bonkel, 15 years ago

fix

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