4f61cbb3b9
Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
281 B
Bash
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 $?
|