| 1 | #!/bin/sh
|
|---|
| 2 | #
|
|---|
| 3 | TMP=/tmp/.picon
|
|---|
| 4 | echo "syncing disk"
|
|---|
| 5 | sync
|
|---|
| 6 |
|
|---|
| 7 | model=`cat /etc/model`
|
|---|
| 8 | echo ""
|
|---|
| 9 | echo "Checking your Boxtype...."
|
|---|
| 10 | echo "Some Plugins will not work correctly on your $model!"
|
|---|
| 11 | echo ""
|
|---|
| 12 | if [ "$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
|
|---|
| 16 | else
|
|---|
| 17 | echo "Boxtype: $model OK"
|
|---|
| 18 | fi
|
|---|
| 19 |
|
|---|
| 20 | if [ -e /etc/.usbimage ]; then
|
|---|
| 21 | echo "detected USB Image...."
|
|---|
| 22 | echo "ok..."
|
|---|
| 23 | elif [ "$model" = "ufs912" ] || [ "$model" = "at7500" ] || [ "$model" = "at7000" ] || [ "$model" = "at700" ]; then
|
|---|
| 24 | echo "detected Boxtype : $model...."
|
|---|
| 25 | echo "ok..."
|
|---|
| 26 | if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
|
|---|
| 27 | SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
|
|---|
| 28 | FREE=`expr $SPACE - 100`
|
|---|
| 29 | SIZE=4272
|
|---|
| 30 | echo "checking freespace in flash"
|
|---|
| 31 | echo packege size $SIZE kb
|
|---|
| 32 | echo freespace size $FREE kb
|
|---|
| 33 | if [ "$FREE" -lt "$SIZE" ]; then
|
|---|
| 34 | echo "sorry no freespace left on device"
|
|---|
| 35 | echo "ERROR: this package will not fit in your flash..."
|
|---|
| 36 | echo "...you need a swapstick to install the package on your $model...!"
|
|---|
| 37 | echo "aborting installation..."
|
|---|
| 38 | exit 1
|
|---|
| 39 | else
|
|---|
| 40 | echo freespace ok
|
|---|
| 41 | fi
|
|---|
| 42 | fi
|
|---|
| 43 | else
|
|---|
| 44 | echo "ERROR: this package will not fit in your flash..."
|
|---|
| 45 | echo "...you need a swapstick to install the package on your $model...!"
|
|---|
| 46 | echo "aborting installation..."
|
|---|
| 47 | exit 1
|
|---|
| 48 | fi
|
|---|
| 49 |
|
|---|
| 50 | echo "installing Picons for Neutrino..."
|
|---|
| 51 | echo "checking OS"
|
|---|
| 52 | if [ `cat /etc/motd | grep AAF | grep M | grep rev | wc -l` -eq 0 ]; then
|
|---|
| 53 | echo ---------------------------
|
|---|
| 54 | echo DONT USE this IPK Package!!
|
|---|
| 55 | echo ---
|
|---|
| 56 | echo Only for AAF Image!!
|
|---|
| 57 | echo ---------------------------
|
|---|
| 58 | exit 1
|
|---|
| 59 | fi
|
|---|
| 60 |
|
|---|
| 61 | rm -rf /var/usr/local/share/neutrino/icons/logo
|
|---|
| 62 |
|
|---|
| 63 | exit 0
|
|---|