From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ie0-f173.google.com (mail-ie0-f173.google.com [209.85.223.173]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 484CDE006DD for ; Wed, 17 Jul 2013 12:32:12 -0700 (PDT) Received: by mail-ie0-f173.google.com with SMTP id k13so5054691iea.32 for ; Wed, 17 Jul 2013 12:32:11 -0700 (PDT) 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:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=6GoTckSrErvrmSXOcaNEp6Eqt3PuvHbfvaVozMmfeZk=; b=bYydlr0itq1Lmp1jilLNmYXFqJd2LrpFFZSsWrUPMP+vOeBqSFp9s1A5rSstg4iW8R KgBJiV5qetnEQ+N1669/lDZuMdltVd9R0WBKHVL9iGitcEmziYEKJaAFIDPZTbp7HtxW qQysyd6D1Pc7yEBg7XziJcPIy0L4vvUqHxBH95QmsaC0wPJnmmoNB2Aw1idOh5L/BT16 XJR+xYPTftnGS+Mza14W5Uv2863B7gvlzncm8hhYzH0zeZw8T/wlkBvspKe9ey+8R3fA +TnDniTLTRhrcNF6NKPTvjjWBxWwR/UG8jAafgsNIzgCMDhhYMMrvKfJaFjbU5FCiA49 Fsvg== X-Received: by 10.50.18.81 with SMTP id u17mr1874974igd.8.1374089531748; Wed, 17 Jul 2013 12:32:11 -0700 (PDT) Received: from goober.local ([75.76.228.60]) by mx.google.com with ESMTPSA id y2sm7453286igl.10.2013.07.17.12.32.10 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 17 Jul 2013 12:32:11 -0700 (PDT) Message-ID: <51E6F139.8030503@gmail.com> Date: Wed, 17 Jul 2013 14:32:09 -0500 From: John Weber User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130620 Thunderbird/17.0.7 MIME-Version: 1.0 To: meta-freescale@yoctoproject.org References: <1374085031-2116-1-git-send-email-otavio@ossystems.com.br> <1374085031-2116-5-git-send-email-otavio@ossystems.com.br> In-Reply-To: <1374085031-2116-5-git-send-email-otavio@ossystems.com.br> Subject: Re: [meta-fsl-arm PATCH 5/8] gpu-viv-bin-mx6q.inc: Fix soname of libGL library 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 Jul 2013 19:32:14 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Does this fix the issue I found in bug: https://bugzilla.yoctoproject.org/show_bug.cgi?id=4850 If so, great! On 7/17/13 1:17 PM, Otavio Salvador wrote: > The soname used by mesa is 1.2.0 while the Vivante binary lacked the > minor version so sometimes we might end fetching the wrong package > because of this. > > Change-Id: I581c573f2b794923baa96829a483cd6d6f5393e0 > Signed-off-by: Otavio Salvador > --- > recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc b/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc > index c9c266e..8c64822 100644 > --- a/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc > +++ b/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc > @@ -116,6 +116,9 @@ do_install () { > > # We'll only have one backend here so we rename it to generic name > # and avoid rework in other packages, when possible > + mv ${D}${libdir}/libGL.so.1.2 ${D}${libdir}/libGL.so.1.2.0 > + ln -sf libGL.so.1.2.0 ${D}${libdir}/libGL.so.1.2 > + ln -sf libGL.so.1.2.0 ${D}${libdir}/libGL.so > mv ${D}${libdir}/libEGL-${backend}.so ${D}${libdir}/libEGL.so.1 > ln -sf libEGL.so.1 ${D}${libdir}/libEGL.so > mv ${D}${libdir}/libGAL-${backend}.so ${D}${libdir}/libGAL.so >