From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yh0-f51.google.com (mail-yh0-f51.google.com [209.85.213.51]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 3D045E00853 for ; Sat, 22 Feb 2014 11:32:23 -0800 (PST) Received: by mail-yh0-f51.google.com with SMTP id t59so3743668yho.24 for ; Sat, 22 Feb 2014 11:32:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=myNgbdw8QrTstXCl2QI/jSP5tu3WuuKfXPcmtwAM6w8=; b=X4kJEGWpXZ2Q75GmBmaS/JZpFqVG5RPa1sU6ejEV8CxOn4WVaBb7drnBm1zpzq5/45 pylyqvQovuVa9BHVCSSJNf4PxfD/s+dXLWRzd+V+uJix346ss+FAMAj4sD+T5lkw+pC9 470pI+Zl6KbsesOoKyaeSY4vaFAMDT8xyAk8z7tMj0AvTlPbTpS/r6Ux7+6z8etUKXob q6NIDd1Vg6ddwIadWzcllRQEf19/NOTT7eZmMzKe5EEgCJa2PLESUa2eKX6qVSzyqj4R kdTILUMv29atZi8WFneseZwiMNuIhXGsJkl7fEsH5mwOK5+RlfUl9Q31tQ2IiZ4OEdnj Lzeg== X-Received: by 10.236.194.40 with SMTP id l28mr19500168yhn.63.1393097542870; Sat, 22 Feb 2014 11:32:22 -0800 (PST) Received: from goober-2.local ([75.76.20.151]) by mx.google.com with ESMTPSA id h23sm31910763yhc.0.2014.02.22.11.32.22 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 22 Feb 2014 11:32:22 -0800 (PST) Message-ID: <5308FB43.5080406@gmail.com> Date: Sat, 22 Feb 2014 13:32:19 -0600 From: John Weber User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Otavio Salvador References: <1393019695-29636-1-git-send-email-otavio@ossystems.com.br> <1393019695-29636-2-git-send-email-otavio@ossystems.com.br> <5308CCC3.6080106@gmail.com> In-Reply-To: Cc: "meta-freescale@yoctoproject.org" Subject: Re: [meta-fsl-arm][PATCH 1/2] mesa: Update to follow OE-Core changes 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: Sat, 22 Feb 2014 19:32:24 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi Otavio, On 2/22/14, 11:46 AM, Otavio Salvador wrote: > Hello John, > > On Sat, Feb 22, 2014 at 1:13 PM, John Weber wrote: >> On 2/21/14, 3:54 PM, Otavio Salvador wrote: >>> This updates the bbappend to the newer version; as mesa now provides >>> the needed PACKAGECONFIG settings we rely on this instead of using an >>> annonymous Python code to change it during build time. >>> >>> The bbappend file now is much easier to read. >> >> Thanks Otavio - I'm really glad you were able to free up some time to work >> on this. As master changes, it's clear that it takes a lot of work to keep >> up with it. >> >> I applied both patches and ran into a snag. I'm deleting the tmp and >> rebuilding, but here is what I'm seeing: >> >> WARNING: libgl-mesa-9.2.5 was registered as shlib provider for libGL.so.1, >> changing it to libgl-mx6-3.10.9-1.0.0-hfp because it was built later >> >> That is followed by a pretty unspecific error during the do_rootfs task. >> Looking into the task log, this is the error that seems to indicate the >> source of failure: >> >> error: file /usr/lib/libGL.so.1.2.0 conflicts between attempted installs of >> libgl-mx6-3.10.9+1.0.0+hfp-r0.cortexa9hf_vfp_neon_mx6 and >> libgl-mesa-9.2.5-r0.cortexa9hf_vfp_neon_mx6 > I must have missed this as I didn't spot this issue while testing. > Please add following block of code below the bbappend and confirm it > works for you. > > # FIXME: Dirty hack to allow use of Vivante GPU libGL binary > do_install_append_mx6 () { > rm -f ${D}${libdir}/libGL.* > } > > Thanks for reporting this issue. > Thanks for helping to solve it. This fixed the issue with generating the rootfs. Thanks!