Posted: Thu Feb 16, 2017 9:22 pm
R0b0t1,
following on from what NeddySeagoon just said, what do you get on your SD-card image if you run lsmod? Check the vc4 module is loaded, here's the output from my gentoo-on-rpi3-64bit image, for example:
You could also try running "vblank_mode=0 glxgears -info" to see that your Mesa etc. is correctly plumbed in...
To get the accelerated desktop, you need an appropriately configured kernel (& the necessary kernel modules loaded), an appropriately configured Mesa, and appropriately configured X11. See this wiki page for example.
You can look at the /etc/portage/make.conf, /etc/portage/package.use/... on the above image for some pointers too.
following on from what NeddySeagoon just said, what do you get on your SD-card image if you run lsmod? Check the vc4 module is loaded, here's the output from my gentoo-on-rpi3-64bit image, for example:
Code: Select all
pi64 ~ # lsmod
Module Size Used by
configs 49152 0
cmac 16384 1
rfcomm 49152 12
hci_uart 32768 1
btbcm 16384 1 hci_uart
bnep 24576 2
bluetooth 397312 37 hci_uart,bnep,btbcm,rfcomm
ipv6 466944 26
brcmfmac 262144 0
vc4 139264 3
brcmutil 20480 1 brcmfmac
cfg80211 667648 1 brcmfmac
drm_kms_helper 204800 2 vc4
drm 454656 6 vc4,drm_kms_helper
rfkill 32768 5 bluetooth,cfg80211
snd_bcm2835 36864 1
joydev 20480 0
evdev 24576 3
snd_pcm 135168 1 snd_bcm2835
syscopyarea 16384 1 drm_kms_helper
sysfillrect 16384 1 drm_kms_helper
sysimgblt 16384 1 drm_kms_helper
fb_sys_fops 16384 1 drm_kms_helper
snd_timer 36864 1 snd_pcm
snd 102400 5 snd_timer,snd_bcm2835,snd_pcm
uio_pdrv_genirq 16384 0
uio 24576 1 uio_pdrv_genirq
pi64 ~ # uname -r
4.10.0-rc5-v8To get the accelerated desktop, you need an appropriately configured kernel (& the necessary kernel modules loaded), an appropriately configured Mesa, and appropriately configured X11. See this wiki page for example.
You can look at the /etc/portage/make.conf, /etc/portage/package.use/... on the above image for some pointers too.