repo.or.cz
/
buildroot-gz.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
netsnmp: handle libnl dependency properly
[buildroot-gz.git]
/
package
/
odroid-scripts
/
S02odroidc2_fb
blob
2aae59db98f44584d828bb4f22b766664bfc2ddc
1
#!/bin/sh
2
#
3
# Set up frame buffer
4
#
5
6
case
"
$1
"
in
7
start
)
8
echo
"Setting up display..."
9
/
usr
/
sbin
/
odroidc2_init_fb.sh
10
;;
11
stop
)
12
;;
13
restart|reload
)
14
;;
15
*)
16
echo
"Usage:
$0
{start|stop|restart}"
17
exit
1
18
esac
19
20
exit
$?