buildroot/package/odroid-scripts/S02odroidc2_fb
Dagg Stompler 3fdb3af631 odroid-scripts: init display as early as possible
this commit will init the display as early as possible so the user can
see on screen the boot process.
the displey init will be called after the logging init to provide some
logging of the init.

Signed-off-by: Dagg Stompler <daggs@gmx.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-11-25 22:02:02 +01:00

21 lines
281 B
Bash

#!/bin/sh
#
# Set up frame buffer
#
case "$1" in
start)
echo "Setting up display..."
/usr/sbin/odroidc2_init_fb.sh
;;
stop)
;;
restart|reload)
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?