From a167202fa2628db3a8df2d87c174e35e43b71214 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Fri, 3 Dec 2021 21:15:01 -0500 Subject: [PATCH] Update for 03-12-21 21:15 --- tech/pinephone.wiki | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tech/pinephone.wiki b/tech/pinephone.wiki index a3d1be6..beca429 100644 --- a/tech/pinephone.wiki +++ b/tech/pinephone.wiki @@ -16,4 +16,20 @@ crossdev --target arm-none-eabi === GPU Support === -The pinephone pro uses a Mali T860 quadcore CPU +The pinephone pro uses a Mali T860 quadcore CPU, and therefore is run using the +lima drivers. In the phones make.conf, be sure to add + +{{{ +#/etc/portage/make.conf (chroot in phone) +VIDEO_CARDS="lima" + }}} + +In your global use, be sure to add + +{{{ +#/etc/portage/make.conf (chroot in phone) +USE="gles gles2-only" + }}} + +This ensures that we will only compile programs using OpenGL ES, or OpenGL for +embedded systems.