Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 29,372
» Latest member: Seraphina
» Forum threads: 16,158
» Forum posts: 116,737
Full Statistics
|
Latest Threads |
Interfacing Pine A64 with...
Forum: General Discussion on PineNote
Last Post: georgegohl888
Yesterday, 02:17 PM
» Replies: 1
» Views: 40
|
touchscreeh doesn't accep...
Forum: PinePhone Pro Hardware
Last Post: georgegohl888
Yesterday, 02:06 PM
» Replies: 7
» Views: 799
|
PinePhone USB-C port and ...
Forum: PinePhone Hardware
Last Post: georgegohl888
Yesterday, 02:04 PM
» Replies: 2
» Views: 121
|
No rk2aw boot menu
Forum: General Discussion of PinePhone Pro
Last Post: mikehenson
Yesterday, 07:12 AM
» Replies: 7
» Views: 192
|
Pine.org very poor review
Forum: General
Last Post: dachalife
07-07-2025, 12:06 PM
» Replies: 9
» Views: 5,011
|
baremetal via Zig on Pine...
Forum: PinePhone Software
Last Post: WhiteHexagon
07-07-2025, 10:33 AM
» Replies: 1
» Views: 159
|
Found newer firmware for ...
Forum: Linux on Pinebook Pro
Last Post: remph
07-04-2025, 07:46 AM
» Replies: 4
» Views: 5,463
|
invalid signatures
Forum: Getting Started
Last Post: Francus
07-03-2025, 08:56 AM
» Replies: 0
» Views: 100
|
Pinephone pro packet inje...
Forum: PinePhone Pro Hardware
Last Post: Kevin Kofler
07-02-2025, 02:03 PM
» Replies: 3
» Views: 2,094
|
Modem Issues with the Pin...
Forum: PinePhone Hardware
Last Post: biketool
07-02-2025, 12:50 PM
» Replies: 5
» Views: 1,574
|
|
|
Clamares password needed with new Mobian installation |
Posted by: fauvetan - 06-25-2025, 03:01 PM - Forum: General Discussion on PinePhone
- Replies (1)
|
 |
Hello,
I just try to install Mobian on my Pinephone using the dd’s method but when I put the SD card inside the phone and try to boot on it, I get the “Enter disk decryption passphrase” of Clamares. I read that “1234” is the default password, but it doesn’t work. Clamares tell me it’s a wrong password.
I flashed my sd card many times, trying some tweeks, but the message still the same.
So, what can I do to bypass this situation?
Thank you.
|
|
|
Pinecil v2 tip screw temperature |
Posted by: Minuen - 06-23-2025, 06:38 AM - Forum: General Discussion on Pinecil
- No Replies
|
 |
I just recently got a Pinecil v2 and I want to make sure that my setup doesn't have issues. The two screws which hold the tip get hot enough to burn me if I brush them while rotating the pinecil during soldering. Do your screws get hot?
Cable: anker 100W silicone usb-c cable https://www.amazon.ca/gp/aw/d/B093GGNRZM
Charging block: Apple 140W laptop charger https://www.apple.com/ca/shop/product/MW2M3AM/A/140w-usb-c-power-adapter
The device says it's getting a consistent 20V and has never posted a warning.
Firmware: v2.23-rc4
Tip: initially noticed with a ST-KU tip I got off Amazon but the original tip it shipped with also has this issue
Temps: 350-380C used while I was testing using lead free solder
Is this just something I need to be aware of and avoid touching? If so that's fine. If the entire tip is supposed to get hot it would make sense that the screws touching it also get hot.
Some searching suggests that it could be an issue with either my setup or some of the circuitry in the device and I don’t want to damage it.
|
|
|
(real) Mainline U-boot finally works on SPI, boots SATA, throw away your SD cards NOW |
Posted by: aleksei - 06-21-2025, 06:21 AM - Forum: General Discussion on ROCKPRO64
- No Replies
|
 |
This is on Arch ARM* or Manjaro installed on RP64. If compiling on amd64 machine, set CROSS_COMPILE variables accordingly.
Build ATF:
Code: git clone --depth=1 -b v2.13.0 https://github.com/ARM-software/arm-trusted-firmware.git
make -j $(nproc) CC=gcc PLAT=rk3399 bl31
Build U-boot:
Code: git clone --depth=1 -b v2025.04 https://source.denx.de/u-boot/u-boot.git
export BL31=/path/to/built/bl31.elf
make mrproper && make rockpro64-rk3399_defconfig
make menuconfig
Here are the changed variables in .config, but don't just copy them to your .config - search for them in menuconfig and change there, the menu will take care of dependencies.
Code: CONFIG_BOOTDELAY=20
CONFIG_BOOTCOMMAND="bootflow scan -lbm"
CONFIG_CMD_ERASEENV=y
CONFIG_CMD_NVEDIT_LOAD=y
CONFIG_NO_NET=y
CONFIG_BAUDRATE=115200
CONFIG_USE_PREBOOT=y
CONFIG_PREBOOT="usb start"
CONFIG_PREBOOT_DEFINED=y
make -j $(nproc)
Writing to SD card first to test it (from doc/README.rockchip in U-boot source, "Option 3: Package the image with TPL"):
Code: dd if=idbloader.img of=/dev/sdX seek=64
dd if=u-boot.itb of=/dev/sdX seek=16384
sync
Flashing to SPI is much simpler nowadays, see doc/board/rockchip/rockchip.rst in U-boot source. Create a partition with FAT filesystem on the same SD card, place u-boot-rockchip-spi.bin on it, reboot, get to U-boot cmdline and:
Code: sf probe
load mmc 1:1 $kernel_addr_r u-boot-rockchip-spi.bin
sf update $fileaddr 0 $filesize
If sf probe returns an error or booting from SPI fails, short pins 23 and 25 on GPIO to temporarily disable SPI. After booting disconnect them again and erase SPI to at least get SD boot working.
U-boot environment section on SPI might be empty, broken or contain wrong variables. To get default environment for installed version of U-boot, remove situational partitions variable and save the environment to SPI, run in U-boot cmdline:
Code: env default -a
env delete partitions
env save
Then create EFI partition on SATA disk and proceed like with a regular UEFI machine. U-boot from SPI will also scan SATA partitions for extlinux/extlinux.conf, boot.scr and other U-boot-specific boot configs.
* On Arch, pacman -U these 3 pkgs from Manjaro (choose a mirror close to you) to build ATF:
https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst
https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst
https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst
PS Screw this forum software inserting copious newlines on every press of preview button.
|
|
|
Thoughts after a year with the PBP |
Posted by: ksosn - 06-20-2025, 03:00 AM - Forum: General Discussion on Pinebook Pro
- Replies (2)
|
 |
Hi,
I'm relatively new to the community here, as I received my first and, so far, only Pine64 product roughly a year ago, even though I've been reading the blog for much longer.
It's the PBP, and I've been using it as my only laptop.
It's really good for what it is: being small, light, having a long battery life (for light tasks), it is entirely silent, it looks and feels like a premium product.
The RAM capacity and CPU performance are limited, but it's good enough. All demanding tasks I want to do can wait for the moment when I get to my desk and boot up my desktop PC.
My laptop's role is mainly displaying PDFs, static websites, running a text editor, running GIMP, compiling small programs, letting me SSH into other machines.
As for the future: the machine serves its role well, and this isn't going to change, so even though I would like my next laptop to also be a small, light, fanless Pine64 product, I wouldn't want to buy it until 2030. Also, given that performance is not very important, I think that the increase between RK3399 and RK3588 is relatively insignificant, and Pine64 either way should wait for new, more promising hardware to become available before beginning work on a new iteration of the Pinebook.
|
|
|
VoIP account on mobian dialer |
Posted by: j_s - 06-15-2025, 04:19 PM - Forum: Mobian on PinePhone
- No Replies
|
 |
I've noticed that the mobian dialer has an option to add a SIP account.
I did so and was able to place a call over wifi with no SIM card in the PinePhone. But after a reboot, the option to place a SIP call is gone even though the file /home/mobian/.config/calls/sip-account.cfg is still present and unchanged. And I had to re-enter all SIP account details in order to make another call.
Is the dialer supposed to notice the presence of /home/mobian/.config/calls/sip-account.cfg after a reboot?
Does this work for anyone?
|
|
|
incorporate a multimeter into the Pinecil |
Posted by: kellanphil - 06-13-2025, 04:11 AM - Forum: General
- No Replies
|
 |
When looking at the schematic for the Pinecil I don’t think I see any open gpio pins, but I was bored and was curious to see what you guys thought about trying to incorporate a multimeter into the Pinecil. Has anyone attempted adding anything like this?
|
|
|
|