diff options
author | Brijesh Singh <bksingh@ti.com> | 2010-05-09 11:21:07 -0500 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-06-12 11:03:51 +0200 |
commit | 6080d94ac0c1d9c985f4cf677000b4cd50e1e9ae (patch) | |
tree | 5e6afafe7d2c093c189f7d7e303cd329e7404ac9 /recipes/ti/gstreamer-ti/gstreamer-ti-omapl138-rc.sh | |
parent | e891fc68026e6005c844480f9ee519b814053130 (diff) |
gstreamer_ti: use latest svn rev and apply the patches from tracker 1055.
* move the common build logic in gstreamer-ti.inc
* rebase patches to latest svn rev.
* add profile .sh to disable XDM 0.9 elements.
* Except beagleboard, do not autoload kernel module in initscript. this is
mainly because gst-ti loadmodule is not enough for all application (e.g
dvsdk demo, dmai etc). And since beagle community is not installing dvsdk
demo's hence its safe to install those kernel modules as the boot time.
Signed-off-by: Brijesh Singh <bksingh@ti.com>
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes/ti/gstreamer-ti/gstreamer-ti-omapl138-rc.sh')
-rw-r--r-- | recipes/ti/gstreamer-ti/gstreamer-ti-omapl138-rc.sh | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/recipes/ti/gstreamer-ti/gstreamer-ti-omapl138-rc.sh b/recipes/ti/gstreamer-ti/gstreamer-ti-omapl138-rc.sh deleted file mode 100644 index 353758b3a7..0000000000 --- a/recipes/ti/gstreamer-ti/gstreamer-ti-omapl138-rc.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh -# -# configure kernel modules for TI DSP based gstreamer plugin -# - -# Disable XDM 0.9 elements -export GST_TI_TIViddec_DISABLE=1 -export GST_TI_TIAuddec_DISABLE=1 -export GST_TI_TIVidenc_DISABLE=1 -export GST_TI_TIImgdec_DISABLE=1 -export GST_TI_TIImgenc_DISABLE=1 - -load_module() { - # insert cmemk, tell it to occupy physical 34MB-64MB. - # - modprobe cmemk phys_start=0xC2200000 phys_end=0xC3200000 \ - pools=1x5250000,3x1048576,3x829440,1x256000,4x131072 - - modprobe dsplinkk - - rm -f /dev/dsplink - mknod /dev/dsplink c `awk "\\$2==\"dsplink\" {print \\$1}" /proc/devices` 0 -} - -unload_module() { - rmmod cmemk - rmmod dsplinkk - rm -f /dev/dsplink -} - -case "$1" in - start) - echo -n "Loading kernel modules for gstreamer-ti... " - load_module - echo " done" - ;; - stop) - echo -n "Unloading kernel module ..." - unload_module - echo " done" - ;; - restart) - echo -n "Unloading kernel module ..." - unload_module - echo " done" - echo -n "Loading kernel modules for gstreamer-ti... " - load_module - echo " done" - ;; - *) - echo "$0 <start/stop/restart>" - ;; -esac - |