Newer
Older
barebox / arch / arm / boards / sama5d4_xplained / env / bin / init_board
#!/bin/sh

PATH=/env/bin
export PATH

. /env/config

splash=/env/splash.png

if [ -f ${splash} -a -e /dev/fb0 ]; then
	splash -o ${splash}
	fb0.enable=1
fi

exit 1