diff options
-rwxr-xr-x | S98most-demo | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/S98most-demo b/S98most-demo new file mode 100755 index 0000000..0670dd1 --- /dev/null +++ b/S98most-demo @@ -0,0 +1,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 |