* gstreamer not getting populated in file system
@ 2010-11-30 8:26 harshada
2010-12-01 16:40 ` Tim Harvey
0 siblings, 1 reply; 4+ messages in thread
From: harshada @ 2010-11-30 8:26 UTC (permalink / raw)
To: openembedded-devel
We created new image by adding following into minimal-image.bb:
gstreamer \
gst-plugins-base \
gst-plugins-good \
gst-plugins-bad \
gst-plugins-ugly
Image is getting built without any compiling issues. But we are not able
to find required
gstreamer plugins in the file system image. In ipk directory, we could
find all of the corresponding ipks.
What to do to get the filesystem populated with these gstreamer plugins?
thanks and regards,
Harshada
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: gstreamer not getting populated in file system
2010-11-30 8:26 gstreamer not getting populated in file system harshada
@ 2010-12-01 16:40 ` Tim Harvey
2010-12-02 9:26 ` Maksym Parkachov
0 siblings, 1 reply; 4+ messages in thread
From: Tim Harvey @ 2010-12-01 16:40 UTC (permalink / raw)
To: openembedded-devel
On 11/30/2010 12:26 AM, harshada wrote:
> We created new image by adding following into minimal-image.bb:
> gstreamer \
> gst-plugins-base \
> gst-plugins-good \
> gst-plugins-bad \
> gst-plugins-ugly
> Image is getting built without any compiling issues. But we are not able
> to find required
> gstreamer plugins in the file system image. In ipk directory, we could
> find all of the corresponding ipks.
> What to do to get the filesystem populated with these gstreamer plugins?
>
> thanks and regards,
> Harshada
I believe you need to place the actual plugins in your image - do a find
tmp/deploy/ipk -name gst-plugin-*
Tim
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: gstreamer not getting populated in file system
2010-12-01 16:40 ` Tim Harvey
@ 2010-12-02 9:26 ` Maksym Parkachov
2010-12-03 6:39 ` harshada
0 siblings, 1 reply; 4+ messages in thread
From: Maksym Parkachov @ 2010-12-02 9:26 UTC (permalink / raw)
To: openembedded-devel
Hi Harshada,
I've seen the same behavior as you, instead of gst-plugins-base you
need to use gst-plugins-base-meta, and correspondingly all other as
well. During last couple of months gst-plugins-base, .etc. changed
dependency on plugins from DEPENDS to RECOMMENDS.
Hope this helps,
Maksym.
On Wed, Dec 1, 2010 at 5:40 PM, Tim Harvey <harvey.tim@gmail.com> wrote:
> On 11/30/2010 12:26 AM, harshada wrote:
>>
>> We created new image by adding following into minimal-image.bb:
>> gstreamer \
>> gst-plugins-base \
>> gst-plugins-good \
>> gst-plugins-bad \
>> gst-plugins-ugly
>> Image is getting built without any compiling issues. But we are not able
>> to find required
>> gstreamer plugins in the file system image. In ipk directory, we could
>> find all of the corresponding ipks.
>> What to do to get the filesystem populated with these gstreamer plugins?
>>
>> thanks and regards,
>> Harshada
>
> I believe you need to place the actual plugins in your image - do a find
> tmp/deploy/ipk -name gst-plugin-*
>
> Tim
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: gstreamer not getting populated in file system
2010-12-02 9:26 ` Maksym Parkachov
@ 2010-12-03 6:39 ` harshada
0 siblings, 0 replies; 4+ messages in thread
From: harshada @ 2010-12-03 6:39 UTC (permalink / raw)
To: openembedded-devel
Hi Maksym,
Thanks for reply. I added a task called mytask as follows:
PACKAGES = "task-mytask"
RDEPENDS_task-mytask = " strace \
gstreamer \
gst-meta-base \
gst-plugins-base \
gst-plugins-good \
gst-plugins-bad \
gst-plugins-ugly "
DEPENDS_task-mytask = " "
RRECOMMENDS = " strace \
gstreamer \
gst-meta-base \
gst-plugins-base \
gst-plugins-good \
gst-plugins-bad \
gst-plugins-ugly "
And used it while creating image. But still I am not able to see the
gstreamer plugins populated.
I couldn't find any other meta bb file except gst-meta-base. What could
be the wrong?
~Harshada.
On Thursday 02 December 2010 02:56 PM, Maksym Parkachov wrote:
> Hi Harshada,
>
> I've seen the same behavior as you, instead of gst-plugins-base you
> need to use gst-plugins-base-meta, and correspondingly all other as
> well. During last couple of months gst-plugins-base, .etc. changed
> dependency on plugins from DEPENDS to RECOMMENDS.
>
> Hope this helps,
> Maksym.
>
> On Wed, Dec 1, 2010 at 5:40 PM, Tim Harvey<harvey.tim@gmail.com> wrote:
>
>> On 11/30/2010 12:26 AM, harshada wrote:
>>
>>> We created new image by adding following into minimal-image.bb:
>>> gstreamer \
>>> gst-plugins-base \
>>> gst-plugins-good \
>>> gst-plugins-bad \
>>> gst-plugins-ugly
>>> Image is getting built without any compiling issues. But we are not able
>>> to find required
>>> gstreamer plugins in the file system image. In ipk directory, we could
>>> find all of the corresponding ipks.
>>> What to do to get the filesystem populated with these gstreamer plugins?
>>>
>>> thanks and regards,
>>> Harshada
>>>
>> I believe you need to place the actual plugins in your image - do a find
>> tmp/deploy/ipk -name gst-plugin-*
>>
>> Tim
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>
>>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-12-03 6:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-30 8:26 gstreamer not getting populated in file system harshada
2010-12-01 16:40 ` Tim Harvey
2010-12-02 9:26 ` Maksym Parkachov
2010-12-03 6:39 ` harshada
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.