summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/sama5d4_xplained/env/bin/init_board
blob: f3d417e35663d35b5270a3b96096bff7b2f57571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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