#!/bin/sh
TMP=/tmp/.editors

echo "successfully installed"
echo "syncing disk"
sync
if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1 | wc -l` -eq 1 ]; then
	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
	FREE=`expr $SPACE - 100`
	echo new freespace size $FREE kb
fi

echo "---------------------------------"
echo "-----------PLEASE READ-----------"
echo "---------------------------------"
echo "now you can fins the editors in the menu of the movielist!!!"
echo "....(press PLAY Button -> MENU Button)...."
echo "---------------------------------"
echo "---------------------------------"
echo "---------------------------------"
echo ""
echo "---------------------------------"
echo "-----------Bitte lesen-----------"
echo "---------------------------------"
echo "du kannst die Erweiterungen nun im Menue der Filmliste finden!!!"
echo "....(drcke PLAY Taste -> MENU Taste)...."
echo "---------------------------------"
echo "---------------------------------"
echo "---------------------------------"

exit 0