From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id E1C83E00998; Wed, 17 Jun 2015 11:02:42 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [209.85.220.174 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily * valid * -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Received: from mail-qk0-f174.google.com (mail-qk0-f174.google.com [209.85.220.174]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 87603E00998 for ; Wed, 17 Jun 2015 11:02:39 -0700 (PDT) Received: by qkfe185 with SMTP id e185so30555024qkf.3 for ; Wed, 17 Jun 2015 11:02:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:organization; bh=lrGLYBkzw4fosNCsto42h6G0bcZQ8SSgGRBNNvDxDOw=; b=UBB2pCSfkpOLkqorkaZxWwok5ptfMhfj5UfYButEM884mW15kefQs2tpX9FUN/owxu Cd/wrcsQGJgIFyWMKi9NtJ/VkAgPGU79012mIaG/fLESmFrfd6dRTjjS2CHozTYORUG9 ZMov0e1Ob5VP3s7L6dISkx7JT/rCr0WQtbyE+XUdsGGo/Xk9Yq2sk5QIFALIaXrEJWjL SagYglvIfakRo9g8qF75BD8tWF/q3nwKMg7xFomxK5jXjNp3Q4aSmKPyhKbodG22/R8Z DXjYAgpPppwQqObm2ZuRbyBrYs5E78DMwVQ20OPrDvRP+b8tkpH7H+FWqUceTH4uvQJY 5vfw== X-Received: by 10.55.25.12 with SMTP id k12mr1749474qkh.81.1434564159452; Wed, 17 Jun 2015 11:02:39 -0700 (PDT) Received: from localhost ([177.100.226.57]) by mx.google.com with ESMTPSA id j62sm2512504qhc.33.2015.06.17.11.02.35 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 17 Jun 2015 11:02:37 -0700 (PDT) Sender: Otavio Salvador Received: by localhost (sSMTP sendmail emulation); Wed, 17 Jun 2015 15:02:32 -0300 From: Otavio Salvador To: meta-freescale Mailing List Date: Wed, 17 Jun 2015 15:02:23 -0300 Message-Id: <1434564146-11377-1-git-send-email-otavio@ossystems.com.br> X-Mailer: git-send-email 2.4.3 Organization: O.S. Systems Software LTDA. Cc: Otavio Salvador Subject: [meta-fsl-arm][PATCH 1/4] core-image-weston: Fail gracefully if using incompatible DISTRO_FEATURES X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 18:02:43 -0000 Vivante GPU driver cannot operate in X11 and Wayland in same distribution as it needs to have different libraries installed. So in case 'x11' is in DISTRO_FEATURES, Wayland is disabled. Fixes [YOCTO: #7814]. Change-Id: Ibde60384b1146ecb0aad353cfbc44163b21b4fc1 Signed-off-by: Otavio Salvador --- recipes-graphics/images/core-image-weston.bbappend | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 recipes-graphics/images/core-image-weston.bbappend diff --git a/recipes-graphics/images/core-image-weston.bbappend b/recipes-graphics/images/core-image-weston.bbappend new file mode 100644 index 0000000..6e33067 --- /dev/null +++ b/recipes-graphics/images/core-image-weston.bbappend @@ -0,0 +1,4 @@ +# FIXME: Vivante GPU driver cannot operate in X11 and Wayland in same +# distribution as it needs to have different libraries installed. So +# in case 'x11' is in DISTRO_FEATURES, Wayland is disabled. +CONFLICT_DISTRO_FEATURES_append_mx6 = " x11" -- 2.4.3