Freescale BSP yocto supports Wandboard Quad?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Freescale BSP yocto supports Wandboard Quad?

5,518 Views
trendantenna
Contributor III

What branch from the Freescale BSP of yocto supports Wandboard Quad? I was using the Dylan branch, but it doesn't support Wandboard Quad.

Should I use the main branch?

Labels (4)
6 Replies

1,179 Views
LeonardoSandova
Specialist I

Use dora branch:

https://github.com/Freescale/meta-fsl-arm-extra/blob/dora/conf/machine/wandboard-quad.conf

Dylan is the past stable branch; on Yocto 1.5, community moved to dora.

Leo

0 Kudos

1,179 Views
trendantenna
Contributor III

how do I know if I downloaded Yocto 1.5 Dora? because I've having trouble bitbaking opencv on Dora.

when I use bitbake opencv the following error happens:

ERROR: Nothing PROVIDES 'libav' (but /home/trendantenna/bin/fsl-community-bsp-dora/sources/meta-openembedded/meta-oe/recipes-support/opencv/opencv_2.4.bb DEPENDS on or otherwise requires it)
ERROR: libav was skipped: because it has a restricted license not whitelisted in LICENSE_FLAGS_WHITELIST
ERROR: libav was skipped: because it has a restricted license not whitelisted in LICENSE_FLAGS_WHITELIST
ERROR: Required build target 'opencv' has no buildable providers.
Missing or unbuildable dependency chain was: ['opencv', 'libav']


0 Kudos

1,179 Views
LeonardoSandova
Specialist I

what parameters did you add when you execute the 'repo init' cmd?

https://github.com/Freescale/fsl-community-bsp-platform/blob/dora/README#L17

If you do not remember, check your commits on sources/meta-fsl-arm and compare with the ones of the upstream repos.

Regarding your issue, you need add that variable (LICENSE_.... =" libav")  into your local.conf.

Leo

0 Kudos

1,179 Views
trendantenna
Contributor III

repo init -u https://github.com/Freescale/fsl-community-bsp-platform -b dora

When adding LICENSE_FLAGS_WHITELIST = "libav" to local.conf still gives the same error

0 Kudos

1,179 Views
LeonardoSandova
Specialist I

Sorry Trend,  I forgot the "commercial" prefix, so it should work with

LICENSE_FLAGS_WHITELIST = "commercial_libav"

More info on

http://www.yoctoproject.org/docs/current/poky-ref-manual/poky-ref-manual.html#var-LAYERDEPENDS

1,179 Views
trendantenna
Contributor III

I used LICENSE_FLAGS_WHITELIST = "commercial" and solved my problem