mplayer - mplayer2 license whitelist on yocto -


i using dragonboard 410c + yocto, , i’m trying build mplayer2 . mplayer2 refuses compile due it’s commercial license:

… skipped: because has restricted license not whitelisted in license_flags_whitelist

i have tried adding local.conf:

license_flags_whitelist = “commercial” license_flags_whitelist = “commercial_mplayer2” license_flags_whitelist = “mplayer2” 

(did not work)

ant other idea?

thanks!

here information needed adding correctly components different licenses local.conf: http://www.yoctoproject.org/docs/1.8/ref-manual/ref-manual.html#enabling-commercially-licensed-recipes

the problem overwriting whitelist new values each time, takes las value. can either delete last 2 lines or add "+" before "=" in last 2 lines. way:

license_flags_whitelist = “commercial” 

or

license_flags_whitelist = “commercial” license_flags_whitelist += “commercial_mplayer2” license_flags_whitelist += “mplayer2” 

Comments

Popular posts from this blog

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

laravel - Undefined property: Illuminate\Pagination\LengthAwarePaginator::$id (View: F:\project\resources\views\admin\carousels\index.blade.php) -