Ignore:
Timestamp:
Sep 10, 2013, 2:37:37 AM (13 years ago)
Author:
obi
Message:

fix saver control files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ipk/source/screensaver_fcbayern_1_0/CONTROL/preinst

    r12781 r23605  
    11#!/bin/sh
    2 #
    3 TMP=/tmp/.swapscreensaver
     2INSTDIR="$1"
    43
    5 model=`cat /etc/model`
    6 echo""
    7 echo "Checking your Boxtype...."
    8 echo "Some Plugins will not work correctly on your $model!"
    9 echo ""
    10 if [ "$model" = "" ]; then
    11         echo "Sorry! This Plugin is not available for your $model because it will not work correctly!!!"
    12         echo "Aborting installation..."
    13         exit 1
    14 else
    15         echo "Boxtype: $model OK"
     4if [ -e /var/usr/local/share/titan/picons/saver/fcbayern ];then
     5        echo "rename fcbayern -> fcbayern.old"
     6        mv -f /var/usr/local/share/titan/picons/saver/fcbayern /var/usr/local/share/titan/saver/fcbayern.old
    167fi
    178
    18 echo "checking swapstick"
    19 
    20 if [ ! -d /var/swap/saver/ ]; then
    21   echo "--------------------------"
    22         echo "no swapstick found...."
    23         echo "--------------------------"
    24         exit 1
    25         fi
    26 echo "swapstick found...."
    27 link=`readlink /var/swap`
    28 if [ `df | grep /dev/mtdblock | grep mnt | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1 | wc -l` -eq 1 ] && [ $link = "/mnt/swapextensions" ]; then
    29         SPACE=`df | grep /dev/mtdblock | grep mnt | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1`
    30         FREE=`expr $SPACE - 100`
    31         SIZE=3660
    32         echo "checking freespace"
    33         echo packege size $SIZE kb
    34         echo freespace size $FREE kb
    35         if  [ "$FREE" -lt "$SIZE" ]; then
    36                 echo "sorry no freespace left on device"
    37                 exit 1
    38         else
    39                 echo ok         
    40         fi
    41 else
    42         echo "syncing disk"
    43         sync
    44 fi
    45 buildgroup=`cat /etc/.buildgroup`
    46 echo "checking OS"       
    47 if  [ `cat /etc/motd | grep $buildgroup | grep M | grep rev | wc -l` -eq 0 ]; then               
    48         echo ---------------------------                 
    49         echo DONT USE this IPK Package!!                 
    50         echo ---                 
    51         echo Only for $buildgroup Image!!               
    52         echo ---------------------------                 
    53         exit 1           
    54 fi
    55 
    56 echo "installing Screensaver Pictures to swapstick..."
    57 
    58 
     9ln -s "$INSTDIR/usr/local/share/titan/saver/fcbayern" /var/usr/local/share/titan/saver
    5910exit 0
Note: See TracChangeset for help on using the changeset viewer.