* Vivante GPU regressions [was Re: [meta-fsl-arm][PATCH 2/2] linux-imx: Cleanup recipe as SabreLITE machine has been moved]
@ 2013-04-08 20:29 Otavio Salvador
2013-04-08 20:53 ` Otavio Salvador
0 siblings, 1 reply; 6+ messages in thread
From: Otavio Salvador @ 2013-04-08 20:29 UTC (permalink / raw)
To: Eric Nelson; +Cc: meta-freescale Mailing List
On Mon, Apr 8, 2013 at 1:04 PM, Otavio Salvador <otavio@ossystems.com.br> wrote:
> On Mon, Apr 8, 2013 at 12:01 PM, Eric Nelson
> <eric.nelson@boundarydevices.com> wrote:
>> I'm seeing this in /var/log/Xsession.log:
>> /usr/bin/Xorg: symbol lookup error:
>> /usr/lib/xorg/modules/drivers/vivante_drv.so: undefined symbol:
>> gcoHAL_MapUserMemory
>
> This does seem to be a regression and I will look at it later today.
> Thanks for letting us know about it.
I did a look here and for now I didn't find out what might cause it.
So I'd like to know a bit of more information at your side.
Did you reuse a 'tmp' dir? In case you did, please remove 'tmp' and
try again and check if it solves the issue; otherwise let me know so
in case you did not we have a real issue.
Regards,
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Vivante GPU regressions [was Re: [meta-fsl-arm][PATCH 2/2] linux-imx: Cleanup recipe as SabreLITE machine has been moved]
2013-04-08 20:29 Vivante GPU regressions [was Re: [meta-fsl-arm][PATCH 2/2] linux-imx: Cleanup recipe as SabreLITE machine has been moved] Otavio Salvador
@ 2013-04-08 20:53 ` Otavio Salvador
2013-04-08 23:10 ` Eric Nelson
0 siblings, 1 reply; 6+ messages in thread
From: Otavio Salvador @ 2013-04-08 20:53 UTC (permalink / raw)
To: Eric Nelson; +Cc: meta-freescale Mailing List
[-- Attachment #1: Type: text/plain, Size: 1194 bytes --]
On Mon, Apr 8, 2013 at 5:29 PM, Otavio Salvador <otavio@ossystems.com.br> wrote:
> On Mon, Apr 8, 2013 at 1:04 PM, Otavio Salvador <otavio@ossystems.com.br> wrote:
>> On Mon, Apr 8, 2013 at 12:01 PM, Eric Nelson
>> <eric.nelson@boundarydevices.com> wrote:
>>> I'm seeing this in /var/log/Xsession.log:
>>> /usr/bin/Xorg: symbol lookup error:
>>> /usr/lib/xorg/modules/drivers/vivante_drv.so: undefined symbol:
>>> gcoHAL_MapUserMemory
>>
>> This does seem to be a regression and I will look at it later today.
>> Thanks for letting us know about it.
>
> I did a look here and for now I didn't find out what might cause it.
> So I'd like to know a bit of more information at your side.
>
> Did you reuse a 'tmp' dir? In case you did, please remove 'tmp' and
> try again and check if it solves the issue; otherwise let me know so
> in case you did not we have a real issue.
I think I found it.
Can you test the attached patch and confirm it fixes the issue for you?
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
[-- Attachment #2: 0001-xf86-video-imxfb-vivante-Fix-missing-link-to-libGAL..patch --]
[-- Type: application/octet-stream, Size: 1403 bytes --]
From bffdbe222e37b22bfe6d5787a68bf827a8c36007 Mon Sep 17 00:00:00 2001
From: Otavio Salvador <otavio@ossystems.com.br>
Date: Mon, 8 Apr 2013 17:46:31 -0300
Subject: [PATCH] xf86-video-imxfb-vivante: Fix missing link to libGAL.so
Fixes the following runtime issue:
,----
| .../drivers/vivante_drv.so: undefined symbol: gcoHAL_MapUserMemory
`----
The regression was cause by "61394cd gpu-viv-bin-mx6q: Rework package
for a single backend use"; the other libraries seem not required to be
forced linked.
Change-Id: I167e9557431c69dfefe5066630fe64aa4cc60e0f
Reported-by: Eric Nelson <eric.nelson@boundarydevices.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_1.1.0.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_1.1.0.bb b/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_1.1.0.bb
index b63459e..837b59c 100644
--- a/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_1.1.0.bb
+++ b/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_1.1.0.bb
@@ -18,6 +18,7 @@ SRC_URI[sha256sum] = "d53216d5f9e3f7803983ac1577d83985dfda33145e4711300f4ad5cbbe
EXTRA_OECONF_armv7a = " --enable-neon --disable-static"
CFLAGS += " -I${STAGING_INCDIR}/xorg -I${STAGING_INCDIR}/drm"
+LDFLAGS += " -lGAL"
S = "${WORKDIR}/xserver-xorg-video-imx-viv-${PV}/EXA/"
--
1.8.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: Vivante GPU regressions [was Re: [meta-fsl-arm][PATCH 2/2] linux-imx: Cleanup recipe as SabreLITE machine has been moved]
2013-04-08 20:53 ` Otavio Salvador
@ 2013-04-08 23:10 ` Eric Nelson
2013-04-09 13:44 ` Otavio Salvador
0 siblings, 1 reply; 6+ messages in thread
From: Eric Nelson @ 2013-04-08 23:10 UTC (permalink / raw)
To: Otavio Salvador; +Cc: meta-freescale Mailing List
Thanks Otavio,
On 04/08/2013 01:53 PM, Otavio Salvador wrote:
> On Mon, Apr 8, 2013 at 5:29 PM, Otavio Salvador <otavio@ossystems.com.br> wrote:
>> On Mon, Apr 8, 2013 at 1:04 PM, Otavio Salvador <otavio@ossystems.com.br> wrote:
>>> On Mon, Apr 8, 2013 at 12:01 PM, Eric Nelson
>>> <eric.nelson@boundarydevices.com> wrote:
>>>> I'm seeing this in /var/log/Xsession.log:
>>>> /usr/bin/Xorg: symbol lookup error:
>>>> /usr/lib/xorg/modules/drivers/vivante_drv.so: undefined symbol:
>>>> gcoHAL_MapUserMemory
>>>
>>> This does seem to be a regression and I will look at it later today.
>>> Thanks for letting us know about it.
>>
>> I did a look here and for now I didn't find out what might cause it.
>> So I'd like to know a bit of more information at your side.
>>
>> Did you reuse a 'tmp' dir? In case you did, please remove 'tmp' and
>> try again and check if it solves the issue; otherwise let me know so
>> in case you did not we have a real issue.
>
> I think I found it.
>
> Can you test the attached patch and confirm it fixes the issue for you?
>
Testing now with a clean tmp/.
FWIW, my previous test was also with a clean tmp/.
Regards,
Eric
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Vivante GPU regressions [was Re: [meta-fsl-arm][PATCH 2/2] linux-imx: Cleanup recipe as SabreLITE machine has been moved]
2013-04-08 23:10 ` Eric Nelson
@ 2013-04-09 13:44 ` Otavio Salvador
2013-04-09 15:51 ` Eric Nelson
0 siblings, 1 reply; 6+ messages in thread
From: Otavio Salvador @ 2013-04-09 13:44 UTC (permalink / raw)
To: Eric Nelson; +Cc: meta-freescale Mailing List
On Mon, Apr 8, 2013 at 8:10 PM, Eric Nelson
<eric.nelson@boundarydevices.com> wrote:
> Thanks Otavio,
>
>
> On 04/08/2013 01:53 PM, Otavio Salvador wrote:
>>
>> On Mon, Apr 8, 2013 at 5:29 PM, Otavio Salvador <otavio@ossystems.com.br>
>> wrote:
>>>
>>> On Mon, Apr 8, 2013 at 1:04 PM, Otavio Salvador <otavio@ossystems.com.br>
>>> wrote:
>>>>
>>>> On Mon, Apr 8, 2013 at 12:01 PM, Eric Nelson
>>>> <eric.nelson@boundarydevices.com> wrote:
>>>>>
>>>>> I'm seeing this in /var/log/Xsession.log:
>>>>> /usr/bin/Xorg: symbol lookup error:
>>>>> /usr/lib/xorg/modules/drivers/vivante_drv.so: undefined symbol:
>>>>> gcoHAL_MapUserMemory
>>>>
>>>>
>>>> This does seem to be a regression and I will look at it later today.
>>>> Thanks for letting us know about it.
>>>
>>>
>>> I did a look here and for now I didn't find out what might cause it.
>>> So I'd like to know a bit of more information at your side.
>>>
>>> Did you reuse a 'tmp' dir? In case you did, please remove 'tmp' and
>>> try again and check if it solves the issue; otherwise let me know so
>>> in case you did not we have a real issue.
>>
>>
>> I think I found it.
>>
>> Can you test the attached patch and confirm it fixes the issue for you?
>>
>
> Testing now with a clean tmp/.
>
> FWIW, my previous test was also with a clean tmp/.
Any feedback?
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Vivante GPU regressions [was Re: [meta-fsl-arm][PATCH 2/2] linux-imx: Cleanup recipe as SabreLITE machine has been moved]
2013-04-09 13:44 ` Otavio Salvador
@ 2013-04-09 15:51 ` Eric Nelson
2013-04-09 16:00 ` Otavio Salvador
0 siblings, 1 reply; 6+ messages in thread
From: Eric Nelson @ 2013-04-09 15:51 UTC (permalink / raw)
To: Otavio Salvador; +Cc: meta-freescale Mailing List
On 04/09/2013 06:44 AM, Otavio Salvador wrote:
> On Mon, Apr 8, 2013 at 8:10 PM, Eric Nelson
> <eric.nelson@boundarydevices.com> wrote:
>> Thanks Otavio,
>>
>>
>> On 04/08/2013 01:53 PM, Otavio Salvador wrote:
>>>
>>> On Mon, Apr 8, 2013 at 5:29 PM, Otavio Salvador <otavio@ossystems.com.br>
>>> wrote:
>>>>
>>>> On Mon, Apr 8, 2013 at 1:04 PM, Otavio Salvador <otavio@ossystems.com.br>
>>>> wrote:
>>>>>
>>>>> On Mon, Apr 8, 2013 at 12:01 PM, Eric Nelson
>>>>> <eric.nelson@boundarydevices.com> wrote:
>>>>>>
>>>>>> I'm seeing this in /var/log/Xsession.log:
>>>>>> /usr/bin/Xorg: symbol lookup error:
>>>>>> /usr/lib/xorg/modules/drivers/vivante_drv.so: undefined symbol:
>>>>>> gcoHAL_MapUserMemory
>>>>>
>>>>>
>>>>> This does seem to be a regression and I will look at it later today.
>>>>> Thanks for letting us know about it.
>>>>
>>>>
>>>> I did a look here and for now I didn't find out what might cause it.
>>>> So I'd like to know a bit of more information at your side.
>>>>
>>>> Did you reuse a 'tmp' dir? In case you did, please remove 'tmp' and
>>>> try again and check if it solves the issue; otherwise let me know so
>>>> in case you did not we have a real issue.
>>>
>>>
>>> I think I found it.
>>>
>>> Can you test the attached patch and confirm it fixes the issue for you?
>>>
>>
>> Testing now with a clean tmp/.
>>
>> FWIW, my previous test was also with a clean tmp/.
>
> Any feedback?
>
Hi Otavio,
To firmly establish my credentials as a citizen of the USA, I'll
jump to the vernacular:
"You 'da man!"
This patch did the trick and X came right up.
Thank you,
Eric
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Vivante GPU regressions [was Re: [meta-fsl-arm][PATCH 2/2] linux-imx: Cleanup recipe as SabreLITE machine has been moved]
2013-04-09 15:51 ` Eric Nelson
@ 2013-04-09 16:00 ` Otavio Salvador
0 siblings, 0 replies; 6+ messages in thread
From: Otavio Salvador @ 2013-04-09 16:00 UTC (permalink / raw)
To: Eric Nelson; +Cc: meta-freescale Mailing List
On Tue, Apr 9, 2013 at 12:51 PM, Eric Nelson
<eric.nelson@boundarydevices.com> wrote:
> On 04/09/2013 06:44 AM, Otavio Salvador wrote:
>>
>> On Mon, Apr 8, 2013 at 8:10 PM, Eric Nelson
>> <eric.nelson@boundarydevices.com> wrote:
>>>
>>> Thanks Otavio,
>>>
>>>
>>> On 04/08/2013 01:53 PM, Otavio Salvador wrote:
>>>>
>>>>
>>>> On Mon, Apr 8, 2013 at 5:29 PM, Otavio Salvador
>>>> <otavio@ossystems.com.br>
>>>> wrote:
>>>>>
>>>>>
>>>>> On Mon, Apr 8, 2013 at 1:04 PM, Otavio Salvador
>>>>> <otavio@ossystems.com.br>
>>>>> wrote:
>>>>>>
>>>>>>
>>>>>> On Mon, Apr 8, 2013 at 12:01 PM, Eric Nelson
>>>>>> <eric.nelson@boundarydevices.com> wrote:
>>>>>>>
>>>>>>>
>>>>>>> I'm seeing this in /var/log/Xsession.log:
>>>>>>> /usr/bin/Xorg: symbol lookup error:
>>>>>>> /usr/lib/xorg/modules/drivers/vivante_drv.so: undefined symbol:
>>>>>>> gcoHAL_MapUserMemory
>>>>>>
>>>>>>
>>>>>>
>>>>>> This does seem to be a regression and I will look at it later today.
>>>>>> Thanks for letting us know about it.
>>>>>
>>>>>
>>>>>
>>>>> I did a look here and for now I didn't find out what might cause it.
>>>>> So I'd like to know a bit of more information at your side.
>>>>>
>>>>> Did you reuse a 'tmp' dir? In case you did, please remove 'tmp' and
>>>>> try again and check if it solves the issue; otherwise let me know so
>>>>> in case you did not we have a real issue.
>>>>
>>>>
>>>>
>>>> I think I found it.
>>>>
>>>> Can you test the attached patch and confirm it fixes the issue for you?
>>>>
>>>
>>> Testing now with a clean tmp/.
>>>
>>> FWIW, my previous test was also with a clean tmp/.
>>
>>
>> Any feedback?
>>
>
> Hi Otavio,
>
> To firmly establish my credentials as a citizen of the USA, I'll
> jump to the vernacular:
>
> "You 'da man!"
>
> This patch did the trick and X came right up.
LOL; I am glad it worked. I will push it now.
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-04-09 16:00 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-08 20:29 Vivante GPU regressions [was Re: [meta-fsl-arm][PATCH 2/2] linux-imx: Cleanup recipe as SabreLITE machine has been moved] Otavio Salvador
2013-04-08 20:53 ` Otavio Salvador
2013-04-08 23:10 ` Eric Nelson
2013-04-09 13:44 ` Otavio Salvador
2013-04-09 15:51 ` Eric Nelson
2013-04-09 16:00 ` Otavio Salvador
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.