custom_splash_progress() { 
	BOOTTYPE=0
	if [ -e /tmp/.bootmode ]; then
		BOOTTYPE=`cat /tmp/.bootmode`
	fi
	if [ -e /boot/tmp/.bootmode ]; then
		BOOTTYPE=`cat /boot/tmp/.bootmode`
	fi

	if [ x$BOOTTYPE = x0 ]; then
		if [ "$1" -lt 0 ]; then
			test $1 -lt 0 && val="$(( $1 * -1 ))"
			/sbin/fb-progress -b 000000 -p ff0000 -c -l /usr/share/splash/mer-logo.jpg -i $val -o 100
		else
			/sbin/fb-progress -b 000000 -p ffffff -c -l /usr/share/splash/mer-logo.jpg -i $1 -o 100
		fi
	fi
	return 0; 
}

splash_running() {
	return 0;
}
