[oe-commits] [openembedded-core] 08/14: weston: Remove machine specific append

git at git.openembedded.org git at git.openembedded.org
Thu Oct 18 10:06:22 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 50497d5c80052fd4c1c610194faec2c901bbbb1d
Author: Mark Hatle <mark.hatle at windriver.com>
AuthorDate: Wed Oct 17 12:43:25 2018 -0400

    weston: Remove machine specific append
    
    If you try to build a system with multiple BSPs, one of which is qemux86
    or qemux86-64, the overall system configuration will change and all of the
    graphics packages will end up being rebuilt each time.
    
    For a package based system, the PR values will also be incremented each
    time.  The end result will be an ever growing set of PR values as well as
    being unable to tell which configured version of the graphics components
    are really being deployed.
    
    The solution here was to always include the fbdev backend when an x86 BSP
    is enabled.
    
    Signed-off-by: Mark Hatle <mark.hatle at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-graphics/wayland/weston_5.0.0.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-graphics/wayland/weston_5.0.0.bb b/meta/recipes-graphics/wayland/weston_5.0.0.bb
index 299408b..64256db 100644
--- a/meta/recipes-graphics/wayland/weston_5.0.0.bb
+++ b/meta/recipes-graphics/wayland/weston_5.0.0.bb
@@ -29,10 +29,10 @@ WESTON_MAJOR_VERSION = "${@'.'.join(d.getVar('PV').split('.')[0:1])}"
 EXTRA_OECONF = "--enable-setuid-install \
                 --disable-rdp-compositor \
                 "
-EXTRA_OECONF_append_qemux86 = "\
+EXTRA_OECONF_append_x86 = "\
 		WESTON_NATIVE_BACKEND=fbdev-backend.so \
 		"
-EXTRA_OECONF_append_qemux86-64 = "\
+EXTRA_OECONF_append_x86-64 = "\
 		WESTON_NATIVE_BACKEND=fbdev-backend.so \
 		"
 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'kms fbdev wayland egl', '', d)} \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list