* [STABLE][PATCH v2] gstreamer-ti: fix path to codec combos
@ 2009-04-04 12:38 Koen Kooi
2009-04-07 10:40 ` Koen Kooi
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Koen Kooi @ 2009-04-04 12:38 UTC (permalink / raw)
To: openembedded-devel; +Cc: Koen Kooi
From: Koen Kooi <koen@openembedded.org>
---
gstreamer-ti_svn.bb | 11 +++++++++--
ti-codec-combos_3.16.bb | 7 +++++--
2 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/recipes/dsplink/gstreamer-ti_svn.bb b/recipes/dsplink/gstreamer-ti_svn.bb
index e14f262..ab705f3 100644
--- a/recipes/dsplink/gstreamer-ti_svn.bb
+++ b/recipes/dsplink/gstreamer-ti_svn.bb
@@ -4,7 +4,7 @@ SRC_URI = "svn://gforge.ti.com/svn/gstreamer_ti/trunk;module=gstreamer_ti;proto=
"
SRCREV = "160"
-PR = "r6"
+PR = "r7"
# Again, no '.' in PWD allowed :(
PV = "0+svnr${SRCREV}"
@@ -32,6 +32,14 @@ export XDC_PLATFORM
#GCArmv5T.cc.opts = "SEDME_CCARCH";
#GCArmv5T.cc.$seal("opts");
+do_configure_prepend() {
+ for i in ${S}/src/*.cfg ; do
+ sed -i -e s:\./encodeCombo.x64P:${datadir}/ti-codec-combos/encodeCombo.x64P:g \
+ -e s:\./decodeCombo.x64P:${datadir}/ti-codec-combos/decodeCombo.x64P:g \
+ $i
+ done
+}
+
do_compile_prepend() {
for i in $(find ${S} -name "config.bld") ; do
sed -i -e s:SEDME_CCARCH:'${TARGET_CCARCH}': $i
diff --git a/recipes/dsplink/ti-codec-combos_3.16.bb b/recipes/dsplink/ti-codec-combos_3.16.bb
index dd97a57..6bab35a 100644
--- a/recipes/dsplink/ti-codec-combos_3.16.bb
+++ b/recipes/dsplink/ti-codec-combos_3.16.bb
@@ -13,7 +13,7 @@ S = "${WORKDIR}/omap3530_dvsdk_combos_3_16"
# Yes, the xdc stuff still breaks with a '.' in PWD
PV = "316"
-PR = "r14"
+PR = "r15"
TARGET = "all"
@@ -77,6 +77,10 @@ do_install () {
do_stage () {
install -d ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos
cp -pPrf ${S}/* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos
+ for codec in encode decode ; do
+ mkdir -p ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/${datadir}/ti-codec-combos
+ ln -sf ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/$codec* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/${datadir}/ti-codec-combos
+ done
}
FILES_ti-codec-combos = "${datadir}/ti-codec-combos/*"
--
1.5.6.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [STABLE][PATCH v2] gstreamer-ti: fix path to codec combos
2009-04-04 12:38 [STABLE][PATCH v2] gstreamer-ti: fix path to codec combos Koen Kooi
@ 2009-04-07 10:40 ` Koen Kooi
2009-04-08 6:18 ` Koen Kooi
2009-04-08 12:46 ` Philip Balister
2 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2009-04-07 10:40 UTC (permalink / raw)
To: openembedded-devel
On 04-04-09 14:38, Koen Kooi wrote:
> From: Koen Kooi<koen@openembedded.org>
ping
>
> ---
> gstreamer-ti_svn.bb | 11 +++++++++--
> ti-codec-combos_3.16.bb | 7 +++++--
> 2 files changed, 14 insertions(+), 4 deletions(-)
>
> diff --git a/recipes/dsplink/gstreamer-ti_svn.bb b/recipes/dsplink/gstreamer-ti_svn.bb
> index e14f262..ab705f3 100644
> --- a/recipes/dsplink/gstreamer-ti_svn.bb
> +++ b/recipes/dsplink/gstreamer-ti_svn.bb
> @@ -4,7 +4,7 @@ SRC_URI = "svn://gforge.ti.com/svn/gstreamer_ti/trunk;module=gstreamer_ti;proto=
> "
> SRCREV = "160"
>
> -PR = "r6"
> +PR = "r7"
>
> # Again, no '.' in PWD allowed :(
> PV = "0+svnr${SRCREV}"
> @@ -32,6 +32,14 @@ export XDC_PLATFORM
> #GCArmv5T.cc.opts = "SEDME_CCARCH";
> #GCArmv5T.cc.$seal("opts");
>
> +do_configure_prepend() {
> + for i in ${S}/src/*.cfg ; do
> + sed -i -e s:\./encodeCombo.x64P:${datadir}/ti-codec-combos/encodeCombo.x64P:g \
> + -e s:\./decodeCombo.x64P:${datadir}/ti-codec-combos/decodeCombo.x64P:g \
> + $i
> + done
> +}
> +
> do_compile_prepend() {
> for i in $(find ${S} -name "config.bld") ; do
> sed -i -e s:SEDME_CCARCH:'${TARGET_CCARCH}': $i
> diff --git a/recipes/dsplink/ti-codec-combos_3.16.bb b/recipes/dsplink/ti-codec-combos_3.16.bb
> index dd97a57..6bab35a 100644
> --- a/recipes/dsplink/ti-codec-combos_3.16.bb
> +++ b/recipes/dsplink/ti-codec-combos_3.16.bb
> @@ -13,7 +13,7 @@ S = "${WORKDIR}/omap3530_dvsdk_combos_3_16"
>
> # Yes, the xdc stuff still breaks with a '.' in PWD
> PV = "316"
> -PR = "r14"
> +PR = "r15"
>
> TARGET = "all"
>
> @@ -77,6 +77,10 @@ do_install () {
> do_stage () {
> install -d ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos
> cp -pPrf ${S}/* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos
> + for codec in encode decode ; do
> + mkdir -p ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/${datadir}/ti-codec-combos
> + ln -sf ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/$codec* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/${datadir}/ti-codec-combos
> + done
> }
>
> FILES_ti-codec-combos = "${datadir}/ti-codec-combos/*"
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [STABLE][PATCH v2] gstreamer-ti: fix path to codec combos
2009-04-04 12:38 [STABLE][PATCH v2] gstreamer-ti: fix path to codec combos Koen Kooi
2009-04-07 10:40 ` Koen Kooi
@ 2009-04-08 6:18 ` Koen Kooi
2009-04-08 12:46 ` Philip Balister
2 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2009-04-08 6:18 UTC (permalink / raw)
To: openembedded-devel
On 04-04-09 14:38, Koen Kooi wrote:
> From: Koen Kooi<koen@openembedded.org>
ping
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [STABLE][PATCH v2] gstreamer-ti: fix path to codec combos
2009-04-04 12:38 [STABLE][PATCH v2] gstreamer-ti: fix path to codec combos Koen Kooi
2009-04-07 10:40 ` Koen Kooi
2009-04-08 6:18 ` Koen Kooi
@ 2009-04-08 12:46 ` Philip Balister
2 siblings, 0 replies; 4+ messages in thread
From: Philip Balister @ 2009-04-08 12:46 UTC (permalink / raw)
To: openembedded-devel
Acked-by: Philip Balister <philip@balister.org>
Koen Kooi wrote:
> From: Koen Kooi <koen@openembedded.org>
>
> ---
> gstreamer-ti_svn.bb | 11 +++++++++--
> ti-codec-combos_3.16.bb | 7 +++++--
> 2 files changed, 14 insertions(+), 4 deletions(-)
>
> diff --git a/recipes/dsplink/gstreamer-ti_svn.bb b/recipes/dsplink/gstreamer-ti_svn.bb
> index e14f262..ab705f3 100644
> --- a/recipes/dsplink/gstreamer-ti_svn.bb
> +++ b/recipes/dsplink/gstreamer-ti_svn.bb
> @@ -4,7 +4,7 @@ SRC_URI = "svn://gforge.ti.com/svn/gstreamer_ti/trunk;module=gstreamer_ti;proto=
> "
> SRCREV = "160"
>
> -PR = "r6"
> +PR = "r7"
>
> # Again, no '.' in PWD allowed :(
> PV = "0+svnr${SRCREV}"
> @@ -32,6 +32,14 @@ export XDC_PLATFORM
> #GCArmv5T.cc.opts = "SEDME_CCARCH";
> #GCArmv5T.cc.$seal("opts");
>
> +do_configure_prepend() {
> + for i in ${S}/src/*.cfg ; do
> + sed -i -e s:\./encodeCombo.x64P:${datadir}/ti-codec-combos/encodeCombo.x64P:g \
> + -e s:\./decodeCombo.x64P:${datadir}/ti-codec-combos/decodeCombo.x64P:g \
> + $i
> + done
> +}
> +
> do_compile_prepend() {
> for i in $(find ${S} -name "config.bld") ; do
> sed -i -e s:SEDME_CCARCH:'${TARGET_CCARCH}': $i
> diff --git a/recipes/dsplink/ti-codec-combos_3.16.bb b/recipes/dsplink/ti-codec-combos_3.16.bb
> index dd97a57..6bab35a 100644
> --- a/recipes/dsplink/ti-codec-combos_3.16.bb
> +++ b/recipes/dsplink/ti-codec-combos_3.16.bb
> @@ -13,7 +13,7 @@ S = "${WORKDIR}/omap3530_dvsdk_combos_3_16"
>
> # Yes, the xdc stuff still breaks with a '.' in PWD
> PV = "316"
> -PR = "r14"
> +PR = "r15"
>
> TARGET = "all"
>
> @@ -77,6 +77,10 @@ do_install () {
> do_stage () {
> install -d ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos
> cp -pPrf ${S}/* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos
> + for codec in encode decode ; do
> + mkdir -p ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/${datadir}/ti-codec-combos
> + ln -sf ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/$codec* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos/packages/ti/sdo/servers/$codec/package/info/${datadir}/ti-codec-combos
> + done
> }
>
> FILES_ti-codec-combos = "${datadir}/ti-codec-combos/*"
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-04-08 14:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-04 12:38 [STABLE][PATCH v2] gstreamer-ti: fix path to codec combos Koen Kooi
2009-04-07 10:40 ` Koen Kooi
2009-04-08 6:18 ` Koen Kooi
2009-04-08 12:46 ` Philip Balister
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.