From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-f67.google.com (mail-io1-f67.google.com [209.85.166.67]) by mail.openembedded.org (Postfix) with ESMTP id 9A5D27E982 for ; Fri, 14 Jun 2019 13:36:23 +0000 (UTC) Received: by mail-io1-f67.google.com with SMTP id u13so5877072iop.0 for ; Fri, 14 Jun 2019 06:36:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=intel-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=BDQFou/uJHSufVW3oDmYBA17Ua1ucNmfv5BStTPbyow=; b=oPbRjy1kWwsKO1XOIHegcCsa8+QAXkP/MUTYmYtyO3ogTOuoEf+8RnFylhIkha+G6n wUqh3Flbjg++M5f23RDLiUJTYiNE1NJgiGKo6vFtTjCtIqO6qEgytRpkRUOUwHVEGBOf Rr/H1kAY7F1LNq0jeY9UjXZ2tppO1hC7SMIF8UPUXix3rbEt19bl/ob3aV521v3nYfFi p7YSHEwmD4HeN+Ee5g2lp+t6hH9RmWLQy/raP5mO8cdRxUomtBbLhaWJRCqJSd8l9atc hc5SRvnRxcBB1CLi7z3wGjj425lbLD8BPRWMJWr8/uBj/pIyba3NWbgznP1OgmjyiCFX mSNQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=BDQFou/uJHSufVW3oDmYBA17Ua1ucNmfv5BStTPbyow=; b=Yv4ZPbLRTiHgiSOhXGb0KonpBXOQbPlyZqd6Z5Pxfe4wgGJFFz1vK1rpmua19FZNCj 7beJrLzA5rnHFn2G79eRLDChqEPvDGHeU9327OXcDUlIA1BT2rFgIWj68bWrPsPRJtKt 3oblcOZFPb7Igz5t0II0rh1g9midSkpTIc9+eNJn09tJqRnd4cIA/G7dMCB0fV1eKZDV iRXN3hQu/05DlUq+hUBeQ3ofpwQ0qQgwQ+o9XuvN/cxaKB3HtdHO53i90DqAcVTYzUGn +zO3DZ0ryB/ocGw4xje18Q07FNwcQx0EakqIMJ719p06EB6E8VoIjDPaOxId/AKQs9d1 P5Jw== X-Gm-Message-State: APjAAAXablzy5sgGNAi2DZoycq7qgADscNa+B/4dK3mhW3QNbO5faPsW +qepUkIoXx7ftbbW4i6toVnMZYCqsrrR54UvKzkTww== X-Google-Smtp-Source: APXvYqwIsr6bNf5kV6qbajr5Vc/6O+Ki1CNOtIRHQlKvok4BPOf3kpc0JCuZyj1PdK2RcohXNKzi+0F89BU54AHhc4s= X-Received: by 2002:a02:3217:: with SMTP id j23mr67189112jaa.79.1560519384535; Fri, 14 Jun 2019 06:36:24 -0700 (PDT) MIME-Version: 1.0 References: <20190613175442.26121-1-m.felsch@pengutronix.de> <20190614120448.2wg2523qu67la7mh@pengutronix.de> <20190614123451.c5idgiizmqnlhob4@pengutronix.de> <99B005A2-CD21-4AA8-B960-54121098F850@gmail.com> In-Reply-To: From: "Burton, Ross" Date: Fri, 14 Jun 2019 14:36:12 +0100 Message-ID: To: Alexander Kanavin Cc: kernel@pengutronix.de, OE-core Subject: Re: [PATCH 1/2] mesa: make gallium swrast target optional X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jun 2019 13:36:23 -0000 Content-Type: text/plain; charset="UTF-8" On Fri, 14 Jun 2019 at 14:34, Alexander Kanavin wrote: > > On Fri, 14 Jun 2019 at 15:26, wrote: >> >> I guess if we can track down where the swrast dependency is coming and >> and change things to avoid it, that would probably be ok. > > > As Ross said, qemu bsp has this: > > XSERVER ?= "xserver-xorg \ > ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', > 'mesa-driver-swrast xserver-xorg-extension-glx', '', d)} \ > xf86-video-fbdev \ > " > Dropping the swrast dependency will not help though, as it is provided by the mesa-megadriver package, which will continue to include swrast as long as it is enabled in the mesa recipe. mesa-megadriver is also pulled in through other dependencies. Won't that stop the build failure on the autobuilder though? Ross