Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,712
» Latest member: marvin_ellis1212
» Forum threads: 16,263
» Forum posts: 117,208

Full Statistics

Latest Threads
Pinetab2 camera drivers
Forum: PineTab Software
Last Post: biketool
7 minutes ago
» Replies: 10
» Views: 6,761
what is the point?
Forum: General Discussion on PinePhone
Last Post: biketool
1 hour ago
» Replies: 4
» Views: 98
Old Danctnix server in Pa...
Forum: PineTab Software
Last Post: realchunkyflea
10 hours ago
» Replies: 3
» Views: 252
PinePhone sensors - Gyros...
Forum: General Discussion on PinePhone
Last Post: WhiteHexagon
11 hours ago
» Replies: 2
» Views: 58
irradium (based on crux l...
Forum: Linux on Rock64
Last Post: mara
Yesterday, 10:30 AM
» Replies: 10
» Views: 15,923
irradium (based on crux l...
Forum: Linux on RockPro64
Last Post: mara
11-26-2025, 02:45 PM
» Replies: 10
» Views: 16,844
PinePhone, PinePhone Pro,...
Forum: PinePhone Hardware
Last Post: j_s
11-26-2025, 11:33 AM
» Replies: 4
» Views: 222
Quill OS for the PineNote
Forum: PineNote Software
Last Post: JhonSmith
11-26-2025, 01:42 AM
» Replies: 1
» Views: 136
auto-owning the SD card i...
Forum: PineTab Software
Last Post: biketool
11-25-2025, 04:16 AM
» Replies: 1
» Views: 406
Volumio (PINE A64-LTS / S...
Forum: Linux on PINE A64-LTS / SOPINE
Last Post: kapqa
11-23-2025, 02:02 AM
» Replies: 8
» Views: 15,569

 
Smile Easy cross-compiling
Posted by: elijahr - 09-23-2020, 09:16 PM - Forum: Linux on Pinebook Pro - Replies (4)

Hey all, I created some Docker images to make cross-compiling for Linux arm64 easy. I've successfully used my Macbook Pro to compile software for my Pinebook Pro, and it was quite a bit faster than compiling on the PBP itself. Thought others might find the project useful, but I'm also looking for testers. 

The following instructions assume you have a PBP and a non-PBP running on the same LAN, and that the non-PBP has docker installed.

If compiling for Manjaro, run this on your non-PBP:

Code:
docker run -p 3708:3708 elijahru/distcc-cross-compiler-host-archlinux:latest-amd64

If compiling for Debian, run this on your non-PBP:

Code:
docker run -p 3608:3608 elijahru/distcc-cross-compiler-host-debian-buster:latest-amd64

On your PBP, install distcc via pacman or apt and update your PATH so that the distcc wrappers for gcc, g++, etc are found first.

Run this on your Manjaro PBP (assuming you use bash):

Code:
sudo pacman -S distcc
echo 'export PATH=/usr/lib/distcc/bin:$PATH' >> ~/.bash_profile
# Replace X.Y.Z with the LAN IP address or hostname of your non-PBP
echo 'export DISTCC_HOSTS=X.Y.Z:3708' >> ~/.bash_profile
source ~/.bash_profile

Or run this on your Debian PBP:

Code:
sudo apt-get install distcc
echo 'export PATH=/usr/lib/distcc:$PATH' >> ~/.bash_profile
# Replace X.Y.Z with the LAN IP address or hostname of your non-PBP
echo 'export DISTCC_HOSTS=X.Y.Z:3608' >> ~/.bash_profile
source ~/.bash_profile

Confirm that the executable found by running which gcc on your PBP is in /usr/lib/distcc:

Now any C / C++ compilation on the PBP will be transparently offloaded to the non-PBP. You can verify this by observing the distccd output on the non-PBP.

If the non-PBP can't be reached (for instance, if you are away from your LAN, or the docker isn't running), compilation will be performed locally.

Please let me know if you run into any issues.

Source code and documentation for the docker images: https://github.com/elijahr/distcc-cross-compiler
Cheers!


  Latest images from different distros failing to boot from SD card
Posted by: jmonty42 - 09-23-2020, 09:07 PM - Forum: Linux on Pinebook - Replies (2)

I've got a 2017 14" Pinebook with a 64 GB eMMC installed. When I got it, I put the standard Xenial Mate image to boot from eMMC and then didn't touch it for a while. I recently pulled it out and updated to the latest version of Mate available just through `do-release-upgrade`. But that seemed to break some things like the battery life indicator, so I decided to try to find a new image to flash instead.

First, I want to say that I'm pretty disappointed with the state of the wiki for the OG Pinebook. Lots of broken links and not very updated information.

After poking around looking for images to use, I decided to try out Armbian and Manjaro. I have tried the following images all with the same behavior:

  • Manjaro-ARM-i3-pinebook-20.04-emmc-installer-20.04.img.xz
  • Manjaro-ARM-i3-pinebook-20.08.img.xz
  • Manjaro-ARM-kde-plasma-pinebook-20.08.img.xz
  • Armbian_20.08.1_Pinebook-a64_focal_current_5.8.5_desktop.img
  • Armbian_20.08.1_Pinebook-a64_buster_current_5.8.5_desktop.img.xz
  • Armbian_20.08.1_Pinebook-a64_bionic_current_5.8.5.img (pretty sure this was the headless server)
Anyway, on each of these I would see the bootloader start up. If I pressed space during this I'd be taken to the uboot cli. I could sit at that cli for however long I wanted. If I didn't interrupt the bootloader, I would see a splash screen for the distro pop up and after 15 or so seconds the screen would flicker and go black. Even on the headless image without the splash screen, it would go through the startup sequence and at about the same amount of time the screen would flicker and go black. The screen would occasionally light up like it was waking from sleep but then would go back to black. This would last indefinitely, I left it over night one time and it was still occasionally lighting back up just to go back to black periodically.

To make sure it wasn't a power issue I bought a new cable and a new power supply. To make sure it wasn't an SD card, I bought a couple new SD cards. As a last ditch effort I flashed the original Xenial Mate image from the wiki (xenial-mate-pinebook-bspkernel-0.7.28-136.img) and that booted up just fine. It also boots totally fine from eMMC into the original Xenial image I've update there and I can use it and leave it powered on without the screen going black and becoming unresponsive. I even tried booting from a recent Android image (android-7.1-pine-a64-pinebook-v0.3.5-r61.img - is that recent? I don't know) and that worked just fine.

I'm assuming there's something in the most recent kernel that is not compatible with the original Pinebook? Is this a known issue and is there anyone that knows what the latest version of the kernel I can use for one of these images is? I will start trying to find one on my own, but it would be great if someone already knew.


  WIRED-PROPERTIES.CARRIER: off
Posted by: --- - 09-23-2020, 05:33 PM - Forum: Mobian on PinePhone - Replies (1)

Still perusing a usb/ethernet issue (originally ref https://forum.pine64.org/showthread.php?tid=10882). Currently running Mobian, my usb/ethernet connection shows "WIRED-PROPERTIES.CARRIER: off".

GENERAL.DEVICE:                          usb0
GENERAL.TYPE:                              ethernet
GENERAL.HWADDR:                       --:--:--:--:--:--
GENERAL.MTU:                               1500
GENERAL.STATE:                            100 (connected)
GENERAL.CONNECTION:               USB
GENERAL.CON-PATH:                     /org/freedesktop/NetworkManager/ActiveConnection/2
WIRED-PROPERTIES.CARRIER:    off
IP4.ADDRESS[1]:                              10.66.0.1/8
IP4.GATEWAY:                                   --
IP4.ROUTE[1]:                                   dst = 10.0.0.0/8, nh = 0.0.0.0, mt = 1500

Anyone know how to set it ON?


  Can't figure out where MicroSD space is
Posted by: kendew - 09-23-2020, 04:25 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (4)

In trying to troubleshoot an unusable PPB I've just received, I bought a 64G MicroSD card to boot the Fedora 32 Xfce image.  I'm partial to Fedora, and wanted something different from the Manjaro or KDE that is pre-installed for testing purposes.   With dd the install was easy and Fedora booted like a charm.  I've added only apps I needed, like Firefox and Geany to keep it simple.  But even so, the operating system seems to think I have no space left on the MicroSD.

We have lsblk showing the MicroSD disk, mmcblk2, essentially full:

Code:
$ lsblk
NAME         MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
mmcblk2      179:0    0  58.2G  0 disk
├─mmcblk2p1  179:1    0 213.6M  0 part
└─mmcblk2p2  179:2    0    58G  0 part
mmcblk2boot0 179:32   0     4M  1 disk
mmcblk2boot1 179:64   0     4M  1 disk
mmcblk1      179:96   0  59.5G  0 disk
├─mmcblk1p1  179:97   0 213.6M  0 part /boot
└─mmcblk1p2  179:98   0  10.7G  0 part
With df we get a similar story:
Code:
df -h
Filesystem      Size  Used Avail Use% Mounted on
devtmpfs        1.9G     0  1.9G   0% /dev
tmpfs           1.9G   99M  1.8G   6% /dev/shm
tmpfs           1.9G  9.5M  1.9G   1% /run
/dev/mmcblk1p2   11G  9.8G  201M  99% /
tmpfs           1.9G   48K  1.9G   1% /tmp
/dev/mmcblk1p1  214M  134M   81M  63% /boot
tmpfs           380M   24K  380M   1% /run/user/1000
But in fact, du gives:
Code:
$ sudo du -sh *
0    bin
134M    boot
0    dev
28M    etc
2.6G    home
0    lib
0    lib64
4.0K    lost+found
4.0K    media
4.0K    mnt
4.0K    opt
du: cannot access 'proc/4494': No such file or directory
du: cannot access 'proc/4497/task/4497/fd/3': No such file or directory
du: cannot access 'proc/4497/task/4497/fdinfo/3': No such file or directory
du: cannot access 'proc/4497/fd/3': No such file or directory
du: cannot access 'proc/4497/fdinfo/3': No such file or directory
0    proc
3.3G    root
9.5M    run
0    sbin
4.0K    srv
0    sys
40K    tmp
3.5G    usr
442M    var

Your counting may be better than mine, but that doesn't look like much more than 10G.  At the moment, the OS complains of lack of space, which limits my ability to do much.  What am I missing here?
Any ideas much appreciated.
Kendew


  Pinebook Pro- configuration aborts setting keyboard layout
Posted by: scroall - 09-23-2020, 04:15 PM - Forum: Getting Started - Replies (10)

I encountered this issue when I first received and tried to set up my Pinebook Pro, a little over a week ago. Life events have prevented me from revisiting it until now...

When I first started the PBP, I was presented with a screen to select a keyboard layout. As I have an ANSI variant, I used the arrow key to try to select it, but the system instead took me to the "create a user" screen. So, I typed in a user name and pressed "Enter," at which point the system reported "Configuration aborted. Restarting OEM script..." then clear the screen and print that message again.

Eventually I was able to get out of that loop using the left arrow. This would return me to the keyboard layout selection screen. At this point, I was able to select the ANSI layout but, when I pressed "Enter," the user creation screen flashed briefly, but then the system returned to "Configuation aborted. Restarting OEM script..."

I have powered the PBP down, and revisited it hours, a day, and a week later, just to see if anything would be different, but it isn't (not surprisingly, I guess)

I imagine this might be a software issue, and might be helped by working with a fresh image (which I may have some time to figure out in the next few days), but I also wondered if there might be something funky going on with the keyboard.

Has anyone experienced this behaviour and/or know how to resolve it?

I am really excited to try the PBP, but this month has been tough, and I'm feeling a little defeated at this point. Any help would be appreciated Smile


  Getting access to an I2C bus?
Posted by: qMjbKsGg - 09-23-2020, 01:08 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (3)

Is there anywhere on the board where I would be able to tap into an I2C bus? Or does the board have any pads that are the equivalent of a 40-pin header with SDA/SDL pins/pads?


Question Emergency Broadcast information - Customs Help (Peru)
Posted by: colemancda - 09-23-2020, 12:04 PM - Forum: General Discussion on PinePhone - Replies (3)

Hi Pine64 team, first of all I would like to thank you for your hard work, transparency with the community and wonderful products. I am a proud owner of 2 PBP (including 128gb edition) and will be getting my PineTab shortly. I have been trying to purchase PinePhone for Peru (I'm an American expat) but had issues with shipping and the pandemic (Can't order from AliExpress anymore). I was finally able to order the pmOS edition, but its retained in customs at the moment. I have provided them with the user manual, FCC ID, and the FCC certificate, hoping they will approve the importation, as I am the first person in Peru to import this particular model and Govt engineers need to review it. Now the government is asking me for more documents and I would really appreciate some help from the community and staff to get my device approved for use in Peru and imported. I plan on buying more if I can get this through customs and sell to my friends (I'm a Linux software developer) if the Peruvian government will add this phone to their "whitelist" of celular devices. If I don't provide the required information in 10 days, I will lose the PinePhone (they say can't return because of battery hazard, sounds like BS), my shipping cost, and the $40 fee I am paying to request approval for personal use of this device in Peru.

For the continuation of the approval process of the mobile terminal, you must attach: 
1.- Simple copy of the technical manual of the equipment or device to be approved that contains the respective technical specifications, as well as the brand, model, name and address of the manufacturer, the aforementioned technical specifications being the following: - Range (s) of operating frequencies. - Maximum transmission power (s) per frequency range (s). - Wireless communication standard (s). 
2.- IT IS RECOMMENDED to send a copy of the certificate or document stating the specific absorption rate (SAR) issued in the country of origin by a competent authority or internationally renowned laboratory. If you do not have what is requested in points 1 and 2, you can only tell us the FCC ID code of the consigned equipment. 
3.- IT IS RECOMMENDED to send documentation from the manufacturer that proves that it has the Cell Broadcast or Cell Broadcast functionality, which allows it to be configured with the SISMATE parameters, according to Table N ° 2 “Selection of channels for receiving project alerts SISMATE ”contained in Number IV.1 of the Technical Annex of Ministerial Resolution No. 165-2019-MTC / 01.03. 
4.- IT IS RECOMMENDED to indicate the TAC3 number assigned by the GSMA to your device, and that it corresponds to the brand and model, as requested. 

Consequently, a period of 10 business days is granted for its correction; under warning of declaring your request inadmissible at the end of the term granted in case you do not send the requested information; In accordance with the provisions of article 10 of the limited regulation, it is also indicated that the presentation of false and / or adulterated documents will be subject to the corresponding legal actions (criminal complaint), in accordance with the rules on the matter .

So my understanding is that (1) should already be covered in the user manual, but I was planning on sending the PinePhone wiki page as a PDF. For (2) I already sent them the FCC + the FCC certificate. For (3) they says its "recommended" but I think its the real reason for the delay. I need some official document or update user manual from Pine64 that shows that the device emits in the specified frequencies (pretty sure it already does) and that is conforms to emergency broadcast protocols used for earthquakes, etc. If I can get a solution for (3) I am pretty confident I can get the device through customs, as 1 and 2 are provided in the wiki. Also it would help if the user manual can specify the business name and address, as well as the original manufacturer address and business name. This is not in the user manual currently. For (4) I don't have physical access to the device (retained on the coast, I live in the Amazon jungle near Brazil, no flights since March) so I don't have a way to get the IMEI number, but if there is a Org number for PinePhone (like IMEI prefix) that would help me a lot. With regards to the SISMATE in (2) you can read about it here https://portal.mtc.gob.pe/comunicaciones...ón2018.pdf , but I don't think Peru developed its own tech or anything, it probably an international standard for emergency broadcasts like all countries have. I've read that in Android there is an option to disable it so the govt forcing it is kinda useless anyways.

Original Spanish document, also attached other Spanish documents.

Code:
Señores : MILLER IV ALSEY COLEMAN RUC 15602987041  La entidad MTC ha enviado la notificación 2020122828 para la SUCE 2020440712 correspondiente al TUPA DGCSC-2 / Formato MTC001  Mensaje de la Entidad : Estimado señor(a): MILLER IV ALSEY COLEMAN De la evaluación realizada a la información remitida, se observa que su equipo corresponde a un equipo terminal móvil que realiza emisiones radioeléctricas, razón por la cual, deberá indicar si el equipo será para uso personal o comercialización, siendo para este último de acuerdo a lo dispuesto en el numeral 7.3 del artículo 7º del Decreto Supremo Nº 019-2019-MTC que modifica diversos artículos del Reglamento Específico de Homologación de Equipos y Aparatos de Telecomunicaciones, aprobado mediante D.S. Nº 001-2006-MTC, exigible contar con un título habilitante ya sea: concesión, autorización o registro de valor añadido o comercialización, otorgados por el Ministerio de Transportes y Comunicaciones. Por lo cual, para la continuación del proceso de homologación deberá indicar lo observado. Asimismo, de la evaluación realizada a la información remitida se verifica que los documentos “(Req-3) 4716874.pdf” y “(Req-0) 4716977.pdf” corresponden a una ficha de datos y la certificación del “Test Report” del equipo identificado con código FCC ID: “2AWAG-PINEPHONE”, el mismo que ha sido corroborado en el formulario de búsqueda de la FCC (Federal Communications Commission); cuyo modelo de equipo y datos (nombre y dirección) del fabricante difieren a lo consignado en su solicitud de homologación. Al respecto se precisa que los datos brindados deben ser por marca, modelo y datos del fabricante exactos contenidos en el manual técnico del equipo; además, no se adjunta documentación del fabricante que acredite que cuenta con la funcionalidad de Difusión Celular o Cell Broadcast, que permite ser configurado con los parámetros del SISMATE y número TAC. Por otro lado, de la evaluación al documento “(Req-0) PinePhone FCC SDOC Certificate-S19112602605001.pdf” corresponde a un certificado de conformidad del producto, el cual no es necesario para el trámite de homologación. Por lo tanto, de acuerdo con los literales b), c) y d) del numeral 8.1 del Art. 8º del Decreto Supremo Nº 019-2019-MTC y la Segunda Disposición Complementaria Modificatoria del D.S. Nº 038-2019-MTC, para la continuación del proceso de homologación del terminal móvil1, deberá adjuntar vía VUCE:  1.- Copia simple del manual técnico2 del equipo o aparato a homologar que contenga las respectivas especificaciones técnicas, así como la marca, modelo, nombre y dirección del fabricante, siendo las referidas especificaciones técnicas, las siguientes:  - Rango(s) de frecuencias de operación.  - Potencia(s) máxima(s) de transmisión por rango(s) de frecuencias.  - Estándar(es) de comunicación inalámbrica.  2.- SE RECOMIENDA remitir copia del certificado o documento que consigne la tasa de absorción específica (SAR) emitido en el país de origen por autoridad competente o laboratorio de prestigio internacional.  De no contar con lo solicitado en los puntos 1 y 2, puede indicarnos, únicamente, el código FCC ID del equipo consignado.  3.- SE RECOMIENDA remitir documentación del fabricante que acredite que cuenta con la funcionalidad de Difusión Celular o Cell Broadcast, que permite ser configurado con los parámetros del SISMATE, conforme a la Tabla N° 2 “Selección de canales para recepción de alertas del proyecto SISMATE” contenida en el Numeral IV.1 del Anexo Técnico de la Resolución Ministerial Nº 165-2019-MTC/01.03.  4.- SE RECOMIENDA señalar el número de TAC3 asignado por la GSMA a su equipo, y que corresponda en marca y modelo, conforme los haya solicitado.  En consecuencia, se le otorga un plazo de 10 días hábiles para su subsanación; bajo apercibimiento de declarar improcedente su solicitud al término del plazo otorgado en caso no remita la información solicitada; de conformidad a lo dispuesto en el artículo 10° del reglamento acotado, asimismo, se le indica que, la presentación de documentos falsos y/o adulterados, será pasible de las acciones judiciales correspondientes (denuncia penal), conforme a las normas sobre la materia. Nota: Se adjunta las siguientes normas: Resolución Ministerial Nº 165-2019-MTC/01.03, Decreto Supremo 001-2006-MTC, Decreto Supremo N° 019-2019-MTC y Decreto Supremo Nº 038-2019-MTC. Asimismo, para la acreditación de la funcionalidad de difusión celular o cell broadcast que permite ser configurada con los parámetros del SISMATE, se adjunta formato sugerido que contiene información relevante, dicho documento deberá ser emitido por el fabricante del equipo. Atentamente,  D.F.C.N.C.  1 Equipo que posee un IMEI por medio del cual se accede a las redes de las empresas operadoras, para acceder a servicios de telecomunicaciones de voz y/o datos. Esta definición no abarca a los equipos empleados para el Internet de las Cosas ni los utilizados para la comunicación Machine to Machine (M2M). 2 Según el Glosario de Términos del Reglamento de Homologación, un manual técnico se define como: “Documento emitido por el fabricante (...), que contemple funcionamiento, interoperatividad con la red y especificaciones técnicas del equipo o aparato a homologar. Asimismo, deberá permitir la identificación del fabricante, incluyendo el nombre o razón social, domicilio (…)”. Adicionalmente deberá mostrarse textualmente, la marca y el modelo del equipo solicitado. 3 Número TAC: Son los 08 primeros dígitos del código IMEI del equipo. El IMEI se obtiene de: 1) La caja del equipo. 2) Marcando *#06#. 3) En la configuración del equipo.

Apparently there is this insane requirement that the CEO or legal representative of the company has to sign a document confirming the device complies with the emergency broadcast requirements. This is the document that would need to be signed. I will provide an English translation:

MANUFACTURING COMPANY LOGO
NAME OF THE MANUFACTURING COMPANY
MANUFACTURER'S ADDRESS
This document certifies that the equipment (cell phone or smartphone) brand _______ and model ________, has the function of Cell broadcast or cell broadcast, also this equipment can be configured with the parameters of the Emergency Early Warning Messaging System - SISMATE , in accordance with the provisions of MINISTERIAL RESOLUTION No. 165-2019-MTC / 01.03, standard issued by the Ministry of Transport and Communications of the Peruvian State.
In this sense, the equipment can be configured according to the following channels defined by the Emergency Early Warning Messaging System -
Use / Channel
Local Alert: 4370
Local Alert (other languages): 4383
Information: 4382
Testing: 4380
Simulation: 4381
Reserved: 4396, 4397, 4398, 4399

              Name and signature of the legal representative
Information OF THE MANUFACTURING COMPANY (Name, address)

(Original Spanish template)
https://forum.pine64.org/attachment.php?aid=2077

@Luke If you could somehow help me with this, I would really appreciate it.



Attached Files
.pdf   MODELO DE CARTA DE CELL BROADCAST.pdf (Size: 17.03 KB / Downloads: 603)
.pdf   Sistema VUCE.pdf (Size: 175.56 KB / Downloads: 971)

  Pinebook USB reconnections
Posted by: brittman914 - 09-23-2020, 12:03 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (3)

Good afternoon,

I bought and recently received a Pinebook Pro to replace a 12 inch Lenovo Core m5 laptop I use on a daily basis. I've been a long time Armbian and ARM user with several other SBCs and was so thrilled that Pine64 would finally release a laptop with USB-C.

Used it for a few few days, testing images for Armbian, culminating in a event last night where my latest Armbian test-build worked with USB-C video (it hasn't ever worked up until that point).

I was enjoying using my USB-C dock with video, replacing my "desktop" ODROID N2 with the Pinebook Pro, when the keyboard would appear to stop working.

Whipped out the UART cable (after switching the switch from audio to UART) when I noticed the trackpad/keyboard would frequently (~30 times) disconnect and reconnect on the USB bus, eventually not reconnecting at all.

Checked cables, re-seated the connector between mainboard and trackpad/keyboard and re-seated the connector from mainboard to smallboard, with no change.

Finally I unplugged trackpad/keyboard connectors, isolating USB to just the mainboard, and still USB devices repeatedly disconnect and reconnect (I had a external USB keyboard connected to the USB3 port on mainboard only).

dmesg looks unremarkable, apart from the USB devices (keyboard/trackpad) getting disconnected and reconnected.

This device just arrived last week approximately, and while I think the Pinebook Pro is still a fantastic device, mine is currently not usable.

I can get more UART captures of the console and pastebin them, but here is what I see that concerns the internal trackpad/keyboard: https://pastebin.com/pfpbju9K in this test, no other USB devices were attached, just the internal keyboard and trackpad.


  Mobian and HW performance
Posted by: guenther - 09-23-2020, 10:09 AM - Forum: PineTab Software - Replies (4)

I'm using Mobian several days now and I like it very much. Just wondering if there is some space for improvement in overall performance or is the current state just the edge of the PineTab HW? I recognized that CPU usage is very high and for example Firefox is usable but laggy. The GPU acceleration should work in the current image, right?  I don't want to complain and I appreciate the work of the developers very much, Thank You!!! Just want to know...

What's your impression on performance, especially under Mobian?


  When will the Pine Tab be available for order next?
Posted by: tyerod - 09-23-2020, 08:48 AM - Forum: General Discussion on PineTab - Replies (3)

I did not see anything in the monthly update. I saw the previous batch appears to be shipping. I passed on the last round since I had not had a chance to get my hands on my PBP yet but am wanting to get a Tab. Anywho, any updates on when, or what delays are preventing, the next round becoming available would be appreciated.  Keep up the great work!