From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pb0-f45.google.com (mail-pb0-f45.google.com [209.85.160.45]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id EA885E013DE for ; Fri, 26 Jul 2013 11:08:38 -0700 (PDT) Received: by mail-pb0-f45.google.com with SMTP id mc8so2307390pbc.4 for ; Fri, 26 Jul 2013 11:08:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding :x-gm-message-state; bh=utzDJhj5RsG8vk4OVju+hOSAYuIJfMQDyc0Y/fFV7XA=; b=BbRe+sDeH97sGShw5hPAnnJ3QFeaXEbvP7lGhCcY1f1+tpkgCXX1ybORbgN7bYBKnU rzab2TJdIzyEWLLUezgV8JuTYnjW8LTBJjk5PB/RALv5YzuRnuaAMgE8o29C9Xr+F2mR zqOIIz2TX61G6XpT9IEqRBeY0m3My3IIX8WdSst3UsuSWyuDXrVmcq07UPhJJKCUKHaX ZawOscXKDW1zAl83llYvDWhbPJZc64JHw7eo+cGAHUrW30FMbd8kzi8pBgHJuE6XZqc4 y943IMe6pCY6P/cI1xv4z8JuFn3hedYUWBjjUkyK0s5vcucqdTkjIAr0CTG+aO2hfH+m Y1qg== X-Received: by 10.68.211.233 with SMTP id nf9mr52570861pbc.26.1374862118005; Fri, 26 Jul 2013 11:08:38 -0700 (PDT) Received: from [29.6.1.42] ([70.96.116.236]) by mx.google.com with ESMTPSA id wf7sm4906222pac.20.2013.07.26.11.08.35 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 26 Jul 2013 11:08:36 -0700 (PDT) Message-ID: <51F2BB22.706@boundarydevices.com> Date: Fri, 26 Jul 2013 11:08:34 -0700 From: Eric Nelson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130623 Thunderbird/17.0.7 MIME-Version: 1.0 To: Otavio Salvador References: <1374857026-8806-1-git-send-email-otavio@ossystems.com.br> In-Reply-To: <1374857026-8806-1-git-send-email-otavio@ossystems.com.br> X-Gm-Message-State: ALoCoQkllqDkCn2swK80PgtlQs6KUdZLYO4InE9d7QpQ/yEMUGuWs66lcnR5rUDTdXKidZTbygT+ Cc: meta-freescale Mailing List Subject: Re: [meta-fsl-arm PATCH] gpu-viv-bin-mx6q.inc: Add libEGL.so in libegl-mx6 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: Fri, 26 Jul 2013 18:08:42 -0000 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 07/26/2013 09:43 AM, Otavio Salvador wrote: > There're examples, provided by Freescale, which links wrongly against > the .so file (instead of the .so.1 one as expected) and this cannot be > fixed without source code. > > We workaround this for now deploying the libEGL.so file inside > libegl-mx6 binary. > > Signed-off-by: Otavio Salvador > --- > recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > 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 70a9b2d..d897cec 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 > @@ -136,8 +136,10 @@ FILES_libclc-mx6 = "${libdir}/libCLC${SOLIBS}" > FILES_libclc-mx6-dev = "${includedir}/CL ${libdir}/libCLC${SOLIBSDEV}" > FILES_libclc-mx6-dbg = "${libdir}/.debug/libCLC${SOLIBS}" > > -FILES_libegl-mx6 = "${libdir}/libEGL${REALSOLIBS}" > -FILES_libegl-mx6-dev = "${includedir}/EGL ${includedir}/KHR ${libdir}/libEGL${SOLIBSDEV} ${libdir}/pkgconfig/egl.pc" > +# libEGL.so is used by some demo apps from Freescale > +INSANE_SKIP_libegl-mx6 += "dev-so" > +FILES_libegl-mx6 = "${libdir}/libEGL${REALSOLIBS} ${libdir}/libEGL${SOLIBSDEV} " > +FILES_libegl-mx6-dev = "${includedir}/EGL ${includedir}/KHR ${libdir}/pkgconfig/egl.pc" > FILES_libegl-mx6-dbg = "${libdir}/.debug/libEGL${SOLIBS}" > > FILES_libgal-mx6 = "${libdir}/libGAL${SOLIBS}" > Tested-by: Eric Nelson