* meta-raspberry pi libav bbappend
@ 2012-08-31 8:26 Jack Mitchell
2012-08-31 8:30 ` Paul Eggleton
2012-08-31 8:32 ` Jack Mitchell
0 siblings, 2 replies; 11+ messages in thread
From: Jack Mitchell @ 2012-08-31 8:26 UTC (permalink / raw)
To: yocto@yoctoproject.org
I'm attempting to build for the Raspberry Pi again today and I have hit
a problem with libav. I have it BBMASK'ed in my local.conf however it
seems the recipe still gets sanity checked and can't find the recipe to
go with the bbappend so it fails.
What is the best way to get around this?
EDIT: I just checked the readme again and it seems as though meta-oe is
now required, is this the only hurdle in having a non meta-oe build or
has there been other additions recently?
Regards,
Jack.
--
Jack Mitchell (jack@embed.me.uk)
Embedded Systems Engineer
http://www.embed.me.uk
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 8:26 meta-raspberry pi libav bbappend Jack Mitchell
@ 2012-08-31 8:30 ` Paul Eggleton
2012-08-31 8:44 ` Jack Mitchell
2012-08-31 8:32 ` Jack Mitchell
1 sibling, 1 reply; 11+ messages in thread
From: Paul Eggleton @ 2012-08-31 8:30 UTC (permalink / raw)
To: ml, yocto
On Friday 31 August 2012 09:26:03 Jack Mitchell wrote:
> I'm attempting to build for the Raspberry Pi again today and I have hit
> a problem with libav. I have it BBMASK'ed in my local.conf however it
> seems the recipe still gets sanity checked and can't find the recipe to
> go with the bbappend so it fails.
If it's still being in any way considered by the build system when parsing
actually starts, it's not properly BBMASKed. Check that your regex is valid.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 8:26 meta-raspberry pi libav bbappend Jack Mitchell
2012-08-31 8:30 ` Paul Eggleton
@ 2012-08-31 8:32 ` Jack Mitchell
1 sibling, 0 replies; 11+ messages in thread
From: Jack Mitchell @ 2012-08-31 8:32 UTC (permalink / raw)
To: yocto
On 31/08/12 09:26, Jack Mitchell wrote:
> I'm attempting to build for the Raspberry Pi again today and I have
> hit a problem with libav. I have it BBMASK'ed in my local.conf however
> it seems the recipe still gets sanity checked and can't find the
> recipe to go with the bbappend so it fails.
>
> What is the best way to get around this?
>
> EDIT: I just checked the readme again and it seems as though meta-oe
> is now required, is this the only hurdle in having a non meta-oe build
> or has there been other additions recently?
>
> Regards,
> Jack.
>
Just a quick note that I have no problem with using meta-oe, it's a
curiosity and design question rather than a whinge!
Cheers,
--
Jack Mitchell (jack@embed.me.uk)
Embedded Systems Engineer
http://www.embed.me.uk
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 8:30 ` Paul Eggleton
@ 2012-08-31 8:44 ` Jack Mitchell
2012-08-31 9:03 ` Tomas Frydrych
2012-08-31 20:51 ` Khem Raj
0 siblings, 2 replies; 11+ messages in thread
From: Jack Mitchell @ 2012-08-31 8:44 UTC (permalink / raw)
To: yocto@yoctoproject.org
On 31/08/12 09:30, Paul Eggleton wrote:
> On Friday 31 August 2012 09:26:03 Jack Mitchell wrote:
>> I'm attempting to build for the Raspberry Pi again today and I have hit
>> a problem with libav. I have it BBMASK'ed in my local.conf however it
>> seems the recipe still gets sanity checked and can't find the recipe to
>> go with the bbappend so it fails.
> If it's still being in any way considered by the build system when parsing
> actually starts, it's not properly BBMASKed. Check that your regex is valid.
>
> Cheers,
> Paul
>
So my error is:
Pseudo is not present but is required, building this first before
the main build
Parsing recipes: 100% |#########################################|
Time: 00:02:43
Parsing of 828 .bb files complete (0 cached, 828 parsed). 1124
targets, 46 skipped, 1 masked, 0 errors.
ERROR: No recipes available for:
/home/jack/Projects/poky-rasp/meta-raspberrypi/recipes-multimedia/libav/libav_0.7.4.bbappend
ERROR: Command execution failed: Exited with 1
Summary: There were 2 ERROR messages shown, returning a non-zero
exit code.
My BBMASK is:
BBMASK =
"meta-raspberrypi/recipes-multimedia/libav|meta-raspberrypi/recipes-core/systemd"
Does this BBMASK not cover:
/home/jack/Projects/poky-rasp/meta-raspberrypi/recipes-multimedia/libav/libav_0.7.4.bbappend
Cheers,
--
Jack Mitchell (jack@embed.me.uk)
Embedded Systems Engineer
http://www.embed.me.uk
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 8:44 ` Jack Mitchell
@ 2012-08-31 9:03 ` Tomas Frydrych
2012-08-31 9:10 ` Jack Mitchell
2012-08-31 20:51 ` Khem Raj
1 sibling, 1 reply; 11+ messages in thread
From: Tomas Frydrych @ 2012-08-31 9:03 UTC (permalink / raw)
To: yocto
On 31/08/12 09:44, Jack Mitchell wrote:
> My BBMASK is:
>
> BBMASK =
>
> "meta-raspberrypi/recipes-multimedia/libav|meta-raspberrypi/recipes-core/systemd"
I think it matches against full paths, so try:
".*/meta-raspberrypi/recipes-multimedia/libav|.*/meta-raspberrypi/recipes-core/systemd"
Tomas
>
>
>
>
> Does this BBMASK not cover:
>
>
> /home/jack/Projects/poky-rasp/meta-raspberrypi/recipes-multimedia/libav/libav_0.7.4.bbappend
>
>
>
> Cheers,
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 9:03 ` Tomas Frydrych
@ 2012-08-31 9:10 ` Jack Mitchell
2012-08-31 9:18 ` Tomas Frydrych
0 siblings, 1 reply; 11+ messages in thread
From: Jack Mitchell @ 2012-08-31 9:10 UTC (permalink / raw)
To: yocto
On 31/08/12 10:03, Tomas Frydrych wrote:
> On 31/08/12 09:44, Jack Mitchell wrote:
>> My BBMASK is:
>>
>> BBMASK =
>>
>> "meta-raspberrypi/recipes-multimedia/libav|meta-raspberrypi/recipes-core/systemd"
> I think it matches against full paths, so try:
>
> ".*/meta-raspberrypi/recipes-multimedia/libav|.*/meta-raspberrypi/recipes-core/systemd"
>
> Tomas
Thanks for the suggestion but unfortunately no dice. It was working
about a week ago with this BBMASK...The only big change I can see is
that omxplayer now depends in libav, but I have tried just masking the
whole recipes-multimedia path with the same result, so I don't it's that.
>
>>
>>
>>
>> Does this BBMASK not cover:
>>
>>
>> /home/jack/Projects/poky-rasp/meta-raspberrypi/recipes-multimedia/libav/libav_0.7.4.bbappend
>>
>>
>>
>> Cheers,
>>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
--
Jack Mitchell (jack@embed.me.uk)
Embedded Systems Engineer
http://www.embed.me.uk
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 9:10 ` Jack Mitchell
@ 2012-08-31 9:18 ` Tomas Frydrych
2012-08-31 9:20 ` Andrei Gherzan
0 siblings, 1 reply; 11+ messages in thread
From: Tomas Frydrych @ 2012-08-31 9:18 UTC (permalink / raw)
To: yocto
On 31/08/12 10:10, Jack Mitchell wrote:
> Thanks for the suggestion but unfortunately no dice. It was working
> about a week ago with this BBMASK...The only big change I can see is
> that omxplayer now depends in libav, but I have tried just masking the
> whole recipes-multimedia path with the same result, so I don't it's that.
I think the poky-raspberrypi.conf is overriding your BBMASK and it no
longer masks out libav, see
https://github.com/djwillis/meta-raspberrypi/commit/3e0cf999e8fe547a52cb8af28eefdf0f8482daba
Tomas
>
>>
>>>
>>>
>>>
>>> Does this BBMASK not cover:
>>>
>>>
>>> /home/jack/Projects/poky-rasp/meta-raspberrypi/recipes-multimedia/libav/libav_0.7.4.bbappend
>>>
>>>
>>>
>>>
>>> Cheers,
>>>
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 9:18 ` Tomas Frydrych
@ 2012-08-31 9:20 ` Andrei Gherzan
2012-08-31 9:28 ` Jack Mitchell
0 siblings, 1 reply; 11+ messages in thread
From: Andrei Gherzan @ 2012-08-31 9:20 UTC (permalink / raw)
To: Tomas Frydrych; +Cc: yocto
[-- Attachment #1: Type: text/plain, Size: 716 bytes --]
On Fri, Aug 31, 2012 at 12:18 PM, Tomas Frydrych <
tf+lists.yocto@r-finger.com> wrote:
> On 31/08/12 10:10, Jack Mitchell wrote:
> > Thanks for the suggestion but unfortunately no dice. It was working
> > about a week ago with this BBMASK...The only big change I can see is
> > that omxplayer now depends in libav, but I have tried just masking the
> > whole recipes-multimedia path with the same result, so I don't it's that.
>
>
> I think the poky-raspberrypi.conf is overriding your BBMASK and it no
> longer masks out libav, see
>
> https://github.com/djwillis/meta-raspberrypi/commit/3e0cf999e8fe547a52cb8af28eefdf0f8482daba
>
>
> yes. BBMASK is set in distro conf. I will fix it. Wait a sec.
[-- Attachment #2: Type: text/html, Size: 1349 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 9:20 ` Andrei Gherzan
@ 2012-08-31 9:28 ` Jack Mitchell
2012-08-31 9:30 ` Andrei Gherzan
0 siblings, 1 reply; 11+ messages in thread
From: Jack Mitchell @ 2012-08-31 9:28 UTC (permalink / raw)
To: yocto
On 31/08/12 10:20, Andrei Gherzan wrote:
> On Fri, Aug 31, 2012 at 12:18 PM, Tomas Frydrych
> <tf+lists.yocto@r-finger.com <mailto:tf+lists.yocto@r-finger.com>>wrote:
>
> On 31/08/12 10:10, Jack Mitchell wrote:
> > Thanks for the suggestion but unfortunately no dice. It was working
> > about a week ago with this BBMASK...The only big change I can see is
> > that omxplayer now depends in libav, but I have tried just
> masking the
> > whole recipes-multimedia path with the same result, so I don't
> it's that.
>
>
> I think the poky-raspberrypi.conf is overriding your BBMASK and it no
> longer masks out libav, see
> https://github.com/djwillis/meta-raspberrypi/commit/3e0cf999e8fe547a52cb8af28eefdf0f8482daba
>
>
> yes. BBMASK is set in distro conf. I will fix it. Wait a sec.
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
Cheers Andrei, that fixed the parsing issue!
--
Jack Mitchell (jack@embed.me.uk)
Embedded Systems Engineer
http://www.embed.me.uk
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 9:28 ` Jack Mitchell
@ 2012-08-31 9:30 ` Andrei Gherzan
0 siblings, 0 replies; 11+ messages in thread
From: Andrei Gherzan @ 2012-08-31 9:30 UTC (permalink / raw)
To: ml; +Cc: yocto
[-- Attachment #1: Type: text/plain, Size: 1402 bytes --]
On Fri, Aug 31, 2012 at 12:28 PM, Jack Mitchell <ml@communistcode.co.uk>wrote:
> On 31/08/12 10:20, Andrei Gherzan wrote:
>
>> On Fri, Aug 31, 2012 at 12:18 PM, Tomas Frydrych <
>> tf+lists.yocto@r-finger.com <mailto:tf+lists.yocto@r-**finger.com<tf%2Blists.yocto@r-finger.com>
>> >>wrote:
>>
>>
>> On 31/08/12 10:10, Jack Mitchell wrote:
>> > Thanks for the suggestion but unfortunately no dice. It was working
>> > about a week ago with this BBMASK...The only big change I can see is
>> > that omxplayer now depends in libav, but I have tried just
>> masking the
>> > whole recipes-multimedia path with the same result, so I don't
>> it's that.
>>
>>
>> I think the poky-raspberrypi.conf is overriding your BBMASK and it no
>> longer masks out libav, see
>> https://github.com/djwillis/**meta-raspberrypi/commit/**
>> 3e0cf999e8fe547a52cb8af28eefdf**0f8482daba<https://github.com/djwillis/meta-raspberrypi/commit/3e0cf999e8fe547a52cb8af28eefdf0f8482daba>
>>
>>
>> yes. BBMASK is set in distro conf. I will fix it. Wait a sec.
>>
>>
>> ______________________________**_________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.**org/listinfo/yocto<https://lists.yoctoproject.org/listinfo/yocto>
>>
>
> Cheers Andrei, that fixed the parsing issue!
>
>
Checking the next one...
Andrei
[-- Attachment #2: Type: text/html, Size: 2185 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: meta-raspberry pi libav bbappend
2012-08-31 8:44 ` Jack Mitchell
2012-08-31 9:03 ` Tomas Frydrych
@ 2012-08-31 20:51 ` Khem Raj
1 sibling, 0 replies; 11+ messages in thread
From: Khem Raj @ 2012-08-31 20:51 UTC (permalink / raw)
To: ml; +Cc: yocto@yoctoproject.org
On Fri, Aug 31, 2012 at 1:44 AM, Jack Mitchell <ml@communistcode.co.uk> wrote:
>
>
> "meta-raspberrypi/recipes-multimedia/libav|meta-raspberrypi/recipes-core/systemd"
I wonder whats inside meta-raspberrypi/recipes-core/systemd
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2012-08-31 20:51 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-31 8:26 meta-raspberry pi libav bbappend Jack Mitchell
2012-08-31 8:30 ` Paul Eggleton
2012-08-31 8:44 ` Jack Mitchell
2012-08-31 9:03 ` Tomas Frydrych
2012-08-31 9:10 ` Jack Mitchell
2012-08-31 9:18 ` Tomas Frydrych
2012-08-31 9:20 ` Andrei Gherzan
2012-08-31 9:28 ` Jack Mitchell
2012-08-31 9:30 ` Andrei Gherzan
2012-08-31 20:51 ` Khem Raj
2012-08-31 8:32 ` Jack Mitchell
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.