Comment 5 for bug 1015292

Revision history for this message
Ricardo Salveti (rsalveti) wrote : Re: QT5 based applications fails with a segmentation fault with Pandaboard and the SGX driver

One workaround to get Qt 5 working with SGX is simply forcing just the pvr to be loaded by Xorg, creating a specific config:
root@ubuntu-desktop:~# cat /usr/share/X11/xorg.conf.d/99-pvr.conf
# X.Org X server configuration file

Section "Device"
 Identifier "Video Device"
 Driver "pvr"
 Option "FlipChain" "true"
 Option "NoAccel" "false"
EndSection

Section "Monitor"
 Identifier "Main Screen"
EndSection

Section "Screen"
 Identifier "Screen"
 Monitor "Main Screen"
 Device "Video Device"
EndSection

Section "ServerLayout"
 Identifier "Server Layout"
 Screen "Screen"
EndSection