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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,435
» Latest member: hinomi
» Forum threads: 16,180
» Forum posts: 116,819

Full Statistics

Latest Threads
Keyboard availability?
Forum: PinePhone Pro Accessories
Last Post: biketool
10 hours ago
» Replies: 6
» Views: 864
Pine Phone Pro audio on p...
Forum: PinePhone Pro Software
Last Post: DominiqueM
11 hours ago
» Replies: 49
» Views: 35,776
Want to buy second hand P...
Forum: General Discussion on PinePhone
Last Post: MaryOtero
Today, 01:14 AM
» Replies: 1
» Views: 1,237
Pinetime Black Screen
Forum: General Discussion on PineTime
Last Post: karthick
Yesterday, 11:44 PM
» Replies: 1
» Views: 871
How does CPU frequency sc...
Forum: Linux on Quartz64
Last Post: pugzarecute
Yesterday, 07:19 AM
» Replies: 0
» Views: 39
Pinephone Pro not in stor...
Forum: General Discussion on PinePhone
Last Post: bubulux20c
07-29-2025, 09:31 PM
» Replies: 0
» Views: 66
? Introducing RoutineHero...
Forum: General Discussion on PineTime
Last Post: oscar-gardiazabal
07-29-2025, 04:49 AM
» Replies: 2
» Views: 172
Page turner for PineNote ...
Forum: PineNote Software
Last Post: Haroldkent
07-28-2025, 10:05 PM
» Replies: 1
» Views: 530
Request for CAD files of ...
Forum: General Discussion on PineNote
Last Post: Szybet
07-28-2025, 11:22 AM
» Replies: 1
» Views: 919
Movuan distribution for P...
Forum: PinePhone Software
Last Post: merom
07-27-2025, 05:01 PM
» Replies: 5
» Views: 1,151

 
  Armbian and LibreELEC and AltLinux for Quartz64
Posted by: balbes150 - 03-15-2022, 03:07 AM - Forum: Linux on Quartz64 - Replies (152)

The Armbian build system has added support for building images for Quartz64. Test images are available via links.


Quartz64 A

https://disk.yandex.ru/d/xMVoaZXFFcWuog

https://users.armbian.com/balbes150/quartz64/



SOQuartz + SOQuartz Model-A Baseboard.

https://disk.yandex.ru/d/Oq5yvBkuIK4R3A

https://users.armbian.com/balbes150/soquartz/


Quartz64 B

https://disk.yandex.ru/d/u0ioJbqtXqvJ6w




The Armbian build system allows anyone who does not even have special skills to work with complex compilation and assembly procedures. independently (for example, not mediocre on the Quartz64 device itself) to build your own kernel version (change the configuration and get your own version of the kernel) or completely your own version of the image with different DE or package composition. To do this, it is enough to follow very simple steps.


Code:
sudo su
git clone https://github.com/150balbes/build
cd build
./compile.sh

In a simple graphical interface, you can easily select the desired options and start the build process. More details about the build process can be found on the official Armbian documentation resources.

https://docs.armbian.com/


EDK2-EFI

https://users.armbian.com/balbes150/edk2/


  Boot code
Posted by: Emilio - 03-14-2022, 11:07 AM - Forum: PinePhone Pro Software - Replies (7)

Can anybody tell me what exactly
Does this sentence mean?

booti  ${kernel_addr_r}  - ${fdt_addr_r};


  Scripting Bluetooth Hotspot for Mobian
Posted by: biketool - 03-14-2022, 10:47 AM - Forum: Mobian on PinePhone - Replies (1)

We already have almost everything we need here.
I want to get Bluetooth hotspot working on my Mobian/Pinephone, Bluetooth tethering a laptop or tablet while on the train, hotel, during a power outage, or at coffee is a basic daily driver phone requirement in my opinion.
I am sure the modern kernel has the required modules but I don't know what the interface name for bluetooth network interface for the pinephones bt driver; bnep0 is the interface used on this old N900 script.
I think this is an easy edit to the other network interfaces like USB already in the wiki unless iptables has changed much since the 2010s.

BT PAN tethering is by far the best and easiest way to tether to your phone's internet connection vs WiFi which wastes far more electricity per Mb transmitted for little benefit other than maybe easier sharing a wifi password with friends vs them having to pair with you on BT.  The security is provided by the bluetooth pairing process.

Below is the scripting to get full service, including DHCP, automatic Bluetooth PAN hotspot running on the Nokia N900, how much will work as is?.  

Code:
install the iptables package:

apt-get install iptables

create the following 2 files:

/etc/udev/rules.d/98-bnep0.rules:

ACTION=="add", SUBSYSTEM=="net",  KERNEL=="bnep0", RUN+="/etc/udev/bluenet.sh"
ACTION=="remove", SUBSYSTEM=="net",  KERNEL=="bnep0", RUN+="/etc/udev/bluenet.sh"

/etc/udev/bluenet.sh:

#! /bin/sh
if [ $ACTION = "add" ]; then
    echo 1 > /proc/sys/net/ipv4/ip_forward
    iptables -t nat -A POSTROUTING ! -o lo -j MASQUERADE
    ifconfig bnep0 192.168.3.1
    ifconfig bnep0 up
    /usr/sbin/dnsmasq -I lo -z -a 192.168.3.1 -F 192.168.3.64,192.168.3.127 -x /var/run/dnsmasq.pid.bnep0
else
    iptables -t nat -D POSTROUTING ! -o lo -j MASQUERADE
    if [ -f /var/run/dnsmasq.pid.bnep0 ]; then
        DNSMASQ_PID=`cat /var/run/dnsmasq.pid.bnep0`
        rm -f /var/run/dnsmasq.pid.bnep0
        kill $DNSMASQ_PID
       fi
fi

then set /etc/udev/bluenet.sh as executible:

chmod +x /etc/udev/bluenet.sh

now whenever an authorised remote device makes a bluetooth pan (nap) connection iptables and dnsmasq are setup to allow that device access to the phones network. TODO: when no internet connection is active ask to set it up

The mobian wiki has instructions for USB, and LAN, WIfi hotspot is included but bluetooth PAN entry is not yet explained in the wiki.
https://wiki.mobian-project.org/doku.php...networking


  Pine Phone Pro issues
Posted by: gmastap - 03-14-2022, 07:21 AM - Forum: PinePhone Pro Hardware - No Replies

Hello all,

I have bought a Pine Phone Pro and I am stuck from the beginning. 

I updated the delivered manjaro to the latest version and played a bit and I am quite happy. 

No w I was trying to install mobian to one of my SD cards but the only thing I get are read errors from the SD Cards slot as well as I/O Errors.

Okay, I spoke to the developers, go thre remark mayto change to two boots firmware. 

Trying that getting everything ready on two different SD cards, Samsung and San Disk it also Failed to start with the RE button pressed as described. 


Even booting into the working majaro gives me error when I try to write to the SD cards. 



I have no further ideas anymore. Do you have any suggestion ?


  PP Keyboard - Top Row Actuation
Posted by: johnnycontrario - 03-13-2022, 11:10 PM - Forum: PinePhone Accessories - Replies (10)

I'm late to the party on the PinePhone keyboard's top row (number row) actuation issue, but I found 2 solutions to this problem that are simpler than making tiny washer-shaped spacers.



For anyone who has been living under a rock, here are the symptoms:

When pressing a key on the top row of the PinePhone keyboard, the key stroke does not register at the tactile bump. One has to keep pressing the key beyond the tactile bump for the key to register. That last bit of travel is very squishy, and this is the observation that eventually allowed me to understand the root cause of the issue.


The solutions:

  1. Add a tiny strip or 2 of tape on the inner face of the key cap on the hinge side.
    (no need for a shim going all the way around).

    With a pair of good scissors and some tweezers, this is a very easy and fast solution. On my keyboard, a single strip of masking tape made a huge difference, and adding a second one seemed to make it feel a little better.
    In my mind, the cons are durability and adhesive compatibility. I imagine the strips eventually shifting around or falling out of place.
    [Image: 8O72z01.jpeg]

     --- or ---

  2. Remove some material from the hinge-side rim of the keycap.

    This solution was the most effective and resolves the root cause of the problem with no compromises.
    [Image: f3Hmj2v.jpeg]
    [Image: asU2iGP.jpeg]
    [Image: t73nWer.jpeg]


But why tho?
Here's how I found these solutions.

I started by validating the original solution of shimming the inside depth of the keycap (vertical distance between inner face and outer rim). I measured a keycap from the top row with high precision vernier calipers and compared this measurement with the the lower row keycaps.

I found no difference.

To rule out the membrane switches on the top row, I moved a number row keycap to one of the letter rows and the problem followed the keycap. I also noticed that all of the membrane switches registered key presses perfectly without a keycap present. After doing a lot more measuring and playing with the membrane key behavior, I realized that when pressing a keyswitch down, the surrounding membrane is displaced and needs somewhere to go.

The top row keycap doesn't have enough space under the hinge side of the cap. The displaced membrane binds against the rim, preventing it from traveling all the way down. Because of this, the conductive ring under the membrane can't make it all the way down to the contacts unless you press harder to flatten the displaced rubber.
[Image: uatYtXS.jpeg]

To illustrate how it's supposed to work, here's what a lower row keycap looks like when depressed.
[Image: t2IHh5a.jpeg]

Here is how my solutions work.
  1. Adding a shim so the hinge side of the keycap makes that side not travel as far, creating room for the displaced membrane under the rim. It has a slightly squishy feel, but the key actuates reliably at the tactile bump.[Image: mNp8aq4.jpeg]

  2. Removing the portion of keycap that interferes with the displaced membrane allows the keycap to travel all the way down as intended.
    I say this solution is no compromises because the modification is completely hidden from view, it solves the root cause of the problem, and they key does not feel squishy at all. It feels absolutely great.
    [Image: owVTtiN.jpeg]
    (Pictured is the proof of concept test. The final modification removed a bit more material than you see here.)


I hope someone finds this info useful.

Thanks!


  CPU Thermal Pad Specs
Posted by: mfritsche - 03-13-2022, 12:46 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (1)

Hi,

i traced my intermittent issues with crashes to inappropriate cooling of the cpu. 

Right now, to tp2 pads and a 2€ct. piece work ok for normal work loads.

What would be the measurements of the original thermal pad? I am planning to replace that with a chip of copper. 

Tia.


Question No connection to internet without wifi :/
Posted by: elode - 03-13-2022, 08:49 AM - Forum: PostmarketOS on PinePhone - Replies (3)

Hello  Smile
I received my pinephone pro in February 2022.

I installed postmarket os and it works pretty well, except for one thing:
I can't connect to the internet without wifi. In other words, as soon as I leave my house, I no longer have access to the Internet.
I looked in the settings and there, I checked "Mobile Data" and "Data Roaming".
In the advanced settings > Access Point Names, I chose the one that seems to me to be the one that corresponds to my provider… nothing helps.

Any ideas?

Thanks Rolleyes


  OpenWRT on the Rock64
Posted by: CanadianBacon - 03-12-2022, 07:11 PM - Forum: General Discussion on ROCK64 - Replies (14)

I have started the process of getting OpenWRT working on the Rock64.

I have a working image alongside a custom repo for packages which can be found here, download links for the SD Card images are front and centre: https://openwrt.cdnbcn.net/

When installing the SD Card image, you will have to manually configure /etc/opkg/distfeeds.conf with my custom repo, however I'll fix this in a later build.

The main issues currently are as follows:
    - USB3 port isn't working
    - Onboard Ethernet doesn't reset correctly 100% of the time

The source code can be found at https://github.com/CanadianBaconBoi/openwrt/tree/rock64.
It is based on the work of lucize however it has been updated for a modern version of OpenWRT.

There is a thread with some fixes for the aforementioned issues below, however I have been short on time recently and haven't been able to get around to implementing them yet.
https://forum.pine64.org/showthread.php?tid=11012

Any help would be greatly appreciated in pulling these in, I'll continue to host the package repo for free until this is pulled into upstream.


  Lack of incoming SMS messages...
Posted by: thechillhacker - 03-12-2022, 05:39 PM - Forum: General Discussion of PinePhone Pro - Replies (5)

Hello all.

As of about two weeks ago, my SMS messages have stopped coming in on my PPP. MMS messages, including multimedia and plaintext multiperson messages work fine, as do outgoing SMS messages, but incoming messages seem to go into a void. mmcli shows no pending messages, so it is not just the front end GUI application. Has anyone else seen this?

For the record, I am using a PPP loaded with the latest Danctnix/Arch, running Phosh, and am on a Verizon contract.

Thanks for any ideas or insight

-tch


  Re-flash the emmc
Posted by: For_lack_of_a_better_name - 03-12-2022, 03:19 PM - Forum: General Discussion of PinePhone Pro - Replies (5)

My phone will just go dead for days at a time, and it will not update. I think that my software is corrupted. How can I safely reflash the emmc?