]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/meta-ti-glsdk.git/blob - recipes-ti/gstreamer-ti/gstreamer-ti/gstreamer-ti-rc.sh
gstreamer-ti: bump srcrev to fix runtime error, build fix
[glsdk/meta-ti-glsdk.git] / recipes-ti / gstreamer-ti / gstreamer-ti / gstreamer-ti-rc.sh
1 #!/bin/sh
2 #
3 # configure kernel modules to run gst-ti plugins elements
4 #
6 load_module() {
7     echo 
8     echo -n "Running /usr/share/ti/gst/<platform>/loadmodules.sh"
9     /usr/share/ti/gst/<platform>/loadmodules.sh
10 }
12 case "$1" in
13       start) 
14              echo -n "Loading kernel modules for gstreamer-ti... "
15              load_module
16              echo "  done"
17              ;;
18        stop) 
19              echo "Nothing to do"
20              ;;
21         restart) 
22              echo "Nothing to do"
23              ;;
24         *)
25              echo "$0 <start/stop/restart>"
26              ;;
27 esac