Posts: 100
Threads: 20
Likes Received: 1 in 1 posts
Likes Given: 2
Joined: Sep 2017
10-01-2017, 02:30 PM
(This post was last modified: 10-01-2017, 02:35 PM by qaplus .)
I did a apt upgrade which installed Chromium 61 over 60. Unfortunately this version has no GPU acceleration at all. Can someone post your apt policy results? Mine is like the following. Thanks.
Code:
[linaro-alip:~]$ apt policy chromium
chromium:
Installed: 61.0.3163.100-1~deb9u1
Candidate: 61.0.3163.100-1~deb9u1
Version table:
*** 61.0.3163.100-1~deb9u1 500
500 http://security.debian.org stretch/updates/main armhf Packages
100 /var/lib/dpkg/status
59.0.3071.86-1 500
500 http://http.debian.net/debian stretch/main armhf Packages
53.0.2785.143-1.1linarostretch1 500
500 http://repo.linaro.org/ubuntu/linaro-overlay stretch/main armhf Packages
Attached Files
Thumbnail(s)
•
Posts: 100
Threads: 20
Likes Received: 1 in 1 posts
Likes Given: 2
Joined: Sep 2017
For the record:
freshly installed 2.01 (Mikerr's version)
Code:
linaro@linaro-alip:~$ apt policy chromium
chromium:
Installed: 59.0.3071.86-1
Candidate: 60.0.3112.78-1~deb9u1
Version table:
60.0.3112.78-1~deb9u1 500
500 http://security.debian.org stretch/updates/main armhf Packages
*** 59.0.3071.86-1 500
500 http://http.debian.net/debian stretch/main armhf Packages
100 /var/lib/dpkg/status
53.0.2785.143-1.1linarostretch1 500
500 http://repo.linaro.org/ubuntu/linaro-overlay stretch/main armhf Packages
Attached Files
Thumbnail(s)
•
Posts: 77
Threads: 1
Likes Received: 7 in 7 posts
Likes Given: 2
Joined: Aug 2017
My test results are same as yours.
I try this "apt-get upgrade".
I'm Lyle.
•
Posts: 13
Threads: 1
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Aug 2017
(10-02-2017, 08:31 AM) lsb Wrote: My test results are same as yours.
I try this "apt-get upgrade".
Me too. Sudo apt-get upgrade after a clean 2.0.1 installation broke hw acceleration.
•
Posts: 69
Threads: 0
Likes Received: 2 in 2 posts
Likes Given: 0
Joined: Aug 2017
Yes, this is a known problem. Don't update. ;-)
You might be able to
echo "<package-name> hold" | sudo dpkg --set-selections
or
sudo apt-mark hold <package-name>
to stop the upgrade on the appropriate package. I haven't tried.
•
Posts: 36
Threads: 6
Likes Received: 0 in 0 posts
Likes Given: 8
Joined: Nov 2017
11-23-2017, 09:17 AM
(This post was last modified: 11-23-2017, 01:24 PM by maniolias .
Edit Reason: Mistake fix
)
If you're still stuck. I fixed it with this :
sudo ln -s /usr/lib/arm-linux-gnueabihf/libGLESv2.so /usr/lib/chromium/libGLESv2.so
sudo ln -s /usr/lib/arm-linux-gnueabihf/libEGL.so /usr/lib/chromium/libEGL.so
When chromium is updated required libraries are not linked correctly. Re-creating links worked for me.
•
Posts: 173
Threads: 5
Likes Received: 9 in 8 posts
Likes Given: 1
Joined: Oct 2017
11-23-2017, 12:10 PM
(This post was last modified: 11-23-2017, 12:15 PM by SurferTim .)
I tried this with TinkerOS v2.0.3 and Chromium v62, and it does report hardware accelerated now. The directories were incorrect in the post above, so here are the new link commands.
Code:
sudo ln -s /usr/lib/arm-linux-gnueabihf/libGLESv2.so /usr/lib/chromium/libGLESv2.so
sudo ln -s /usr/lib/arm-linux-gnueabihf/libEGL.so /usr/lib/chromium/libEGL.so
Thanks, maniolias!
•
Posts: 36
Threads: 6
Likes Received: 0 in 0 posts
Likes Given: 8
Joined: Nov 2017
Thanks for your correction! It was a mistake.
•
Posts: 173
Threads: 5
Likes Received: 9 in 8 posts
Likes Given: 1
Joined: Oct 2017
11-23-2017, 01:39 PM
(This post was last modified: 11-24-2017, 12:11 PM by SurferTim .
Edit Reason: Added screenshot
)
No problem! I presumed it was a typo. Glad to see somebody discover the reason for the hardware acceleration fail.
Edit: Since others included a screenshot, here is mine TinkerOS v2.0.3 with Chromium v62
chrome://gpu
Attached Files
Thumbnail(s)
•