| Line | |
|---|
| 1 | #!/bin/sh
|
|---|
| 2 | #
|
|---|
| 3 | TMP=/tmp/.set
|
|---|
| 4 |
|
|---|
| 5 | echo "installing settings ..."
|
|---|
| 6 | buildgroup=`cat /etc/.buildgroup`
|
|---|
| 7 | echo "checking OS"
|
|---|
| 8 | if [ `cat /etc/motd | grep $buildgroup | grep M | grep rev | wc -l` -eq 0 ]; then
|
|---|
| 9 | echo ---------------------------
|
|---|
| 10 | echo DONT USE this TPK Package!!
|
|---|
| 11 | echo ---
|
|---|
| 12 | echo Only for $buildgroup Image!!
|
|---|
| 13 | echo ---------------------------
|
|---|
| 14 | exit 1
|
|---|
| 15 | fi
|
|---|
| 16 |
|
|---|
| 17 | if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1 | wc -l` -eq 1 ]; then
|
|---|
| 18 | SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1`
|
|---|
| 19 | FREE=`expr $SPACE - 100`
|
|---|
| 20 | SIZE=30
|
|---|
| 21 | echo "checking freespace"
|
|---|
| 22 | echo packege size $SIZE kb
|
|---|
| 23 | echo freespace size $FREE kb
|
|---|
| 24 | if [ "$FREE" -lt "$SIZE" ]; then
|
|---|
| 25 | echo "sorry no freespace left on device"
|
|---|
| 26 | exit 1
|
|---|
| 27 | else
|
|---|
| 28 | echo ok
|
|---|
| 29 | fi
|
|---|
| 30 | else
|
|---|
| 31 | echo "syncing disk"
|
|---|
| 32 | sync
|
|---|
| 33 | fi
|
|---|
| 34 |
|
|---|
| 35 | if [ -e /tmp/.tpk_upgrade_start ];then
|
|---|
| 36 | echo "tpk upgrade skip settings"
|
|---|
| 37 | exit 1
|
|---|
| 38 | fi
|
|---|
| 39 |
|
|---|
| 40 | rm -f /mnt/settings/bouquets*
|
|---|
| 41 | rm -f /mnt/settings/channel
|
|---|
| 42 | rm -f /mnt/settings/provider
|
|---|
| 43 | rm -f /mnt/settings/transponder
|
|---|
| 44 | rm -f /mnt/settings/satellites
|
|---|
| 45 | rm -f /mnt/settings/epgchannel
|
|---|
| 46 |
|
|---|
| 47 | exit 0
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.