Re: [yocto] meta-raspberry pi libav bbappend

2012-08-31 Thread Jack Mitchell

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 (j...@embed.me.uk)
  Embedded Systems Engineer
  http://www.embed.me.uk

--

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] meta-raspberry pi libav bbappend

2012-08-31 Thread Jack Mitchell

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 (j...@embed.me.uk)
  Embedded Systems Engineer
  http://www.embed.me.uk

--

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] meta-raspberry pi libav bbappend

2012-08-31 Thread Tomas Frydrych
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,
 

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] meta-raspberry pi libav bbappend

2012-08-31 Thread Jack Mitchell

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 (j...@embed.me.uk)
  Embedded Systems Engineer
  http://www.embed.me.uk

--

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] meta-raspberry pi libav bbappend

2012-08-31 Thread Tomas Frydrych
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
 
 

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] meta-raspberry pi libav bbappend

2012-08-31 Thread Andrei Gherzan
On Fri, Aug 31, 2012 at 12:18 PM, Tomas Frydrych 
tf+lists.yo...@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


Re: [yocto] meta-raspberry pi libav bbappend

2012-08-31 Thread Jack Mitchell

On 31/08/12 10:20, Andrei Gherzan wrote:
On Fri, Aug 31, 2012 at 12:18 PM, Tomas Frydrych 
tf+lists.yo...@r-finger.com mailto:tf+lists.yo...@r-finger.comwrote:


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 (j...@embed.me.uk)
  Embedded Systems Engineer
  http://www.embed.me.uk

--

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] meta-raspberry pi libav bbappend

2012-08-31 Thread Khem Raj
On Fri, Aug 31, 2012 at 1:44 AM, Jack Mitchell m...@communistcode.co.uk wrote:


 meta-raspberrypi/recipes-multimedia/libav|meta-raspberrypi/recipes-core/systemd

I wonder whats inside meta-raspberrypi/recipes-core/systemd
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto