* Re: Unable to compile am180x-evm + gstreamer-ti
2013-07-23 20:37 ` Denys Dmytriyenko
@ 2013-07-23 20:39 ` Michael Trimarchi
2013-07-23 21:30 ` Michael Trimarchi
1 sibling, 0 replies; 6+ messages in thread
From: Michael Trimarchi @ 2013-07-23 20:39 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
Hi
On Tue, Jul 23, 2013 at 04:37:38PM -0400, Denys Dmytriyenko wrote:
> On Tue, Jul 23, 2013 at 10:24:17PM +0200, Michael Trimarchi wrote:
> > Hi
> >
> > On Tue, Jul 23, 2013 at 04:21:11PM -0400, Denys Dmytriyenko wrote:
> > > On Tue, Jul 23, 2013 at 10:09:31PM +0200, Michael Trimarchi wrote:
> > > > Hi
> > > >
> > > > I was having trouble in compilation of am180x-evm. The problem is that
> > > > I have this error:
> > > >
> > > > Nothing PROVIDES 'ti-codecs-omapl138'. I'm using HOB right now and I
> > > > have included meta-ti repository. Any hints?
> > >
> > > But am180x-evm is the platform without DSP, so you shouldn't use gstreamer-ti
> > > with it.
> > >
> > > --
> > > Denys
> >
> > http://www.ti.com/product/omap-l138
> >
> > Is there a reference platform for this cpu?
>
> Actually, am180x CPU is the same exact one on the ARM side as OMAP-L138, just
> doesn't have DSP:
>
> http://www.ti.com/product/am1808
>
> Currently, there's a SW gap in meta-ti on the DSP side, hopefully it will be
> closed in the future - there was some activity and discussions on the mailing
> list and internally... No promises yet.
>
Any patch around to cookup the bb file?
Michael
> --
> Denys
--
| Michael Nazzareno Trimarchi Amarula Solutions BV |
| COO - Founder Cruquiuskade 47 |
| +31(0)851119172 Amsterdam 1018 AM NL |
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Unable to compile am180x-evm + gstreamer-ti
2013-07-23 20:37 ` Denys Dmytriyenko
2013-07-23 20:39 ` Michael Trimarchi
@ 2013-07-23 21:30 ` Michael Trimarchi
1 sibling, 0 replies; 6+ messages in thread
From: Michael Trimarchi @ 2013-07-23 21:30 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
Hi
I have done some step
On Tue, Jul 23, 2013 at 04:37:38PM -0400, Denys Dmytriyenko wrote:
> On Tue, Jul 23, 2013 at 10:24:17PM +0200, Michael Trimarchi wrote:
> > Hi
> >
> > On Tue, Jul 23, 2013 at 04:21:11PM -0400, Denys Dmytriyenko wrote:
> > > On Tue, Jul 23, 2013 at 10:09:31PM +0200, Michael Trimarchi wrote:
> > > > Hi
> > > >
> > > > I was having trouble in compilation of am180x-evm. The problem is that
> > > > I have this error:
> > > >
> > > > Nothing PROVIDES 'ti-codecs-omapl138'. I'm using HOB right now and I
> > > > have included meta-ti repository. Any hints?
> > >
> > > But am180x-evm is the platform without DSP, so you shouldn't use gstreamer-ti
> > > with it.
> > >
From fc9af73f5670f9fdc2bdfa12f3ef7ad5331187f0 Mon Sep 17 00:00:00 2001
From: Michael Trimarchi <michael@amarulasolutions.com>
Date: Tue, 23 Jul 2013 23:28:31 +0200
Subject: [PATCH] Remove update-modules references since recipe has been
removed.
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
---
recipes-ti/dsplink/ti-dsplink.inc | 16 ----------------
.../local-power-manager/ti-local-power-manager.inc | 13 -------------
recipes-ti/syslink/ti-syslink.inc | 16 ----------------
3 files changed, 45 deletions(-)
diff --git a/recipes-ti/dsplink/ti-dsplink.inc b/recipes-ti/dsplink/ti-dsplink.inc
index ce7cbf9..fa1c9dd 100644
--- a/recipes-ti/dsplink/ti-dsplink.inc
+++ b/recipes-ti/dsplink/ti-dsplink.inc
@@ -187,22 +187,6 @@ do_install () {
PACKAGES =+ "ti-dsplink-module"
FILES_ti-dsplink-module = "/lib/modules/${KERNEL_VERSION}/kernel/drivers/dsp/dsplinkk.ko"
-RDEPENDS_ti-dsplink-module += "update-modules"
-
-pkg_postinst_ti-dsplink-module () {
-#!/bin/sh
-if [ -n "$D" ]; then
- exit 1
-fi
-
-depmod -a
-update-modules || true
-}
-
-pkg_postrm_ti-dsplink-module () {
-#!/bin/sh
-update-modules || true
-}
PACKAGES += "ti-dsplink-examples"
RDEPENDS_ti-dsplink-examples_append = " ti-dsplink-module"
diff --git a/recipes-ti/local-power-manager/ti-local-power-manager.inc b/recipes-ti/local-power-manager/ti-local-power-manager.inc
index 9155c76..2f2b525 100644
--- a/recipes-ti/local-power-manager/ti-local-power-manager.inc
+++ b/recipes-ti/local-power-manager/ti-local-power-manager.inc
@@ -113,19 +113,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
PACKAGES += "ti-lpm-module"
FILES_ti-lpm-module = "/lib/modules/${KERNEL_VERSION}/kernel/drivers/dsp/*lpm*ko"
RDEPENDS_ti-lpm-module += "ti-dsplink-module"
-RDEPENDS_ti-lpm-module += "update-modules"
-
-pkg_postinst_ti-lpm-module_append () {
- if [ -n "$D" ]; then
- exit 1
- fi
- depmod -a
- update-modules || true
-}
-
-pkg_postrm_ti-lpm-module_append () {
- update-modules || true
-}
PACKAGES += "ti-lpm-utils"
RDEPENDS_ti-lpm-utils += "ti-lpm-module"
diff --git a/recipes-ti/syslink/ti-syslink.inc b/recipes-ti/syslink/ti-syslink.inc
index 04c59c1..b348f1a 100644
--- a/recipes-ti/syslink/ti-syslink.inc
+++ b/recipes-ti/syslink/ti-syslink.inc
@@ -216,22 +216,6 @@ do_install () {
PACKAGES =+ "ti-syslink-module"
FILES_ti-syslink-module = "/lib/modules/${KERNEL_VERSION}/kernel/drivers/dsp/syslink.ko"
-RDEPENDS_ti-syslink-module += "update-modules"
-
-pkg_postinst_ti-syslink-module () {
-#!/bin/sh
-if [ -n "$D" ]; then
- exit 1
-fi
-
-depmod -a
-update-modules || true
-}
-
-pkg_postrm_ti-syslink-module () {
-#!/bin/sh
-update-modules || true
-}
PACKAGES =+ "ti-syslink-examples"
RRECOMMENDS_ti-syslink-examples_append = " ti-syslink-module"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread