#!/bin/sh # TMP=/tmp/.epg echo "syncing disk" sync echo "checking swapstick" if [ ! -d /var/swap/Extensions/ ]; then echo "--------------------------" echo "no swapstick found...." echo "--------------------------" exit 1 fi echo "swapstick found...." echo "installing EPG Refresh Plugin to swapstick..." echo "checking OS" if [ `cat /etc/motd | grep AAF | grep M | grep rev | wc -l` -eq 0 ]; then echo --------------------------- echo DONT USE this IPK Package!! echo --- echo Only for AAF Image!! echo --------------------------- exit 1 fi exit 0