diff options
Diffstat (limited to 'recipes-ti/gstreamer-ti/gstreamer-ti/gstreamer-ti-rc.sh')
-rw-r--r-- | recipes-ti/gstreamer-ti/gstreamer-ti/gstreamer-ti-rc.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/recipes-ti/gstreamer-ti/gstreamer-ti/gstreamer-ti-rc.sh b/recipes-ti/gstreamer-ti/gstreamer-ti/gstreamer-ti-rc.sh deleted file mode 100644 index 35bf7818..00000000 --- a/recipes-ti/gstreamer-ti/gstreamer-ti/gstreamer-ti-rc.sh +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # configure kernel modules to run gst-ti plugins elements | ||
4 | # | ||
5 | |||
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 | } | ||
11 | |||
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 | ||
28 | |||