netsnmp: handle libnl dependency properly
[buildroot-gz.git] / package / odroid-scripts / S02odroidc2_fb
blob2aae59db98f44584d828bb4f22b766664bfc2ddc
1 #!/bin/sh
3 # Set up frame buffer
6 case "$1" in
7 start)
8 echo "Setting up display..."
9 /usr/sbin/odroidc2_init_fb.sh
11 stop)
13 restart|reload)
16 echo "Usage: $0 {start|stop|restart}"
17 exit 1
18 esac
20 exit $?