summaryrefslogtreecommitdiffstats
path: root/S98most-demo
blob: 0670dd1318426c4d794471d20e3d00ca800bf413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
### BEGIN INIT INFO
# Provides:          MOST drivers and examples 
# Required-Start:    $remote_fs $all
# Required-Stop: 
# Default-Start:     2 3 4 5
# Default-Stop:
# Short-Description: Microchip / K2L MOST driver and samples
# Description:       This is the autostart script for the MOST demos
### END INIT INFO

cd /home/root/most-demo
./loadDriver.sh &

sleep 2

./NetworkManager -i config-agl.xml &

sleep 2

./VideoOnDemand -p /home/root/most-demo &

sleep 2

./vod-client play CatsWorld.ts &

: exit 0