#!/bin/sh
# Show a small demo image directly on the framebuffer console at boot.

case "$1" in
	start)
		fbv -i /usr/share/prinux/raymii.png >/dev/null 2>&1 &
		;;
	stop)
		;;
	*)
		echo "Usage: $0 {start|stop}"
		exit 1
		;;
esac
