diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2015-11-18 17:00:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-01 21:30:58 +0000 |
commit | 12c3f7b5501c0035f72c115fa2eac7aaad927057 (patch) | |
tree | 2e4495f399c243ebab37876ea33142adecf0bf88 /meta/recipes-graphics | |
parent | c075d6e514b0a4511007844baf96ad44d7513399 (diff) | |
download | openembedded-core-12c3f7b5501c0035f72c115fa2eac7aaad927057.tar.gz openembedded-core-12c3f7b5501c0035f72c115fa2eac7aaad927057.tar.bz2 openembedded-core-12c3f7b5501c0035f72c115fa2eac7aaad927057.zip |
mesa: Make gl libraries RRECOMMEND mesa-megadriver
This makes e.g. core-image-weston actually work out-of-the-box
on hardware that uses megadriver drivers.
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index 13a8b9d79f..424e8b7f5b 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc @@ -114,7 +114,9 @@ python __anonymous() { d.appendVar("RREPLACES_" + fullp, pkgs) d.appendVar("RPROVIDES_" + fullp, pkgs) d.appendVar("RCONFLICTS_" + fullp, pkgs) - + + d.appendVar("RRECOMMENDS_" + fullp, "mesa-megadriver") + # For -dev, the first element is both the Debian and original name fullp += "-dev" pkgs = p[1] + "-dev" |