| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Looking for engineer for ...
Forum: PinePhone Pro Hardware
Last Post: Andrey_voce
04-06-2026, 08:44 AM
» Replies: 0
» Views: 171
|
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
04-05-2026, 03:03 AM
» Replies: 19
» Views: 8,720
|
Finally got Kali working ...
Forum: General Discussion on Pinebook Pro
Last Post: qingss0
04-04-2026, 08:00 AM
» Replies: 0
» Views: 264
|
Charging problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
04-04-2026, 07:30 AM
» Replies: 0
» Views: 120
|
Latest firmware for PineP...
Forum: PinePhone Software
Last Post: baptx
04-03-2026, 08:37 AM
» Replies: 106
» Views: 217,071
|
Updates have gotten me ex...
Forum: General Discussion on PineNote
Last Post: bills2002
04-02-2026, 05:16 PM
» Replies: 0
» Views: 220
|
Voidlinux working on eMMC
Forum: General Discussion on PineTab
Last Post: tllim
04-01-2026, 04:14 PM
» Replies: 1
» Views: 304
|
Pinecil V2 doesn’t power ...
Forum: General Discussion on Pinecil
Last Post: Juptin
03-28-2026, 02:37 AM
» Replies: 1
» Views: 2,091
|
dead Pinebook - help plea...
Forum: General Discussion on Pinebook Pro
Last Post: williamcorlin
03-26-2026, 04:22 PM
» Replies: 3
» Views: 944
|
BT PAN - we need iptables...
Forum: Mobian on PinePhone
Last Post: biketool
03-25-2026, 12:57 PM
» Replies: 1
» Views: 606
|
|
|
| Flashing image to EMMC |
|
Posted by: Styles - 01-07-2020, 07:50 AM - Forum: General Discussion on Pinebook Pro
- Replies (12)
|
 |
Hi All,
I received my PBP last week, all working fine out of the box, love the device so far!
The only issue I've had so far is that the image on the EMMC seems to be corrupted, I can boot from SD cards just fine, posting this from the standard Debian.
What's strange, once I've booted from a SD I can boot the device from the EMMC once or twice but after it will just loop through the boot process. Sometimes it will get to the logon screen but it will hang there and after a period of time it will power cycle again.
Is there a straight forward way to flash the Debian image to the EMMC storage when booted from a SD? So far it seems my only option is to get the USB adapter and do it that way.
|
|
|
|
| Hangover (wine) on the Pinebook Pro |
|
Posted by: PakoSt - 01-06-2020, 06:06 PM - Forum: General Discussion on Pinebook Pro
- Replies (5)
|
 |
I'm interested to see if someone else has got Hangover running on the Pinebook Pro.
Theoretically, Hangover should provide better performance than using just qemu for running windows programs.
More about Hangover on it's GitHub page and WineHQ's documentation.
Hangover requires 64bit userspace which excludes the default Debian and Ubuntu builds.
The Unofficial Debian installer , @jannik2099 's Gentoo instructions and Manjaro ARM should be the easiest way to get 64bit userspace systems.
The unofficial Debian installer appears to have several perks in terms of getting the requirements fulfiled for Hangover. Namely, gcc-ada should be available.
You can follow my progress on getting gcc-ada and mingw on Manjaro ARM (had to bootstrap gcc-ada using Debian packages) here.
|
|
|
|
| The usage/access of the SPI flash |
|
Posted by: aaspectre - 01-05-2020, 10:59 PM - Forum: General Discussion on Pinebook Pro
- Replies (2)
|
 |
So, reading through the wiki, if my reading comprehension is where it should be, it appears to me that is
1. the RK3399 searches to boot from SPI flash first
2. there is spi flash presentt
3. it is unused or it's use is undocumented
I ask, because this would be the obvious place for a more complex bootloader (i.e. coreboot) instead of relying on the hardcoded boot order, potentially adding support for SSD boot without any hacky drive leapfrogging stuff.
Apologies if this has been talked about before, couldn't quite find anything though.
EDIT: I was so eager to be helpful I didn't even look at the pinned posts, lol.
|
|
|
|
| PineBook Pro Status Update Page? |
|
Posted by: LittleWalter - 01-05-2020, 10:24 PM - Forum: General Discussion on Pinebook Pro
- Replies (19)
|
 |
Hi,
I'm sure that I'm in the same boat as other folk that made orders, but is there a place to check order-update status? Or should just wait until the end of the month before doing anything like contacting the sales people directly?
I placed an order in early December for an ANSI Pinebook Pro and only received the the paypal transaction email, no kind of direct Pine64 confirmation email. I don't even remember what the particular email address I used for the order, so I don't even know how to look that up.
Thanks!
|
|
|
|
| Adjust brightness of backlight i3w-Manjaro |
|
Posted by: Gerhard - 01-05-2020, 04:06 PM - Forum: Pinebook Pro Tutorials
- No Replies
|
 |
To adjust the brightness in i3w on Manjaro or Arch:
-
Code: sudo pacman -S brightnessctl
- Add this keybindings to your config:
Code: #Adjust Brightness with brightnessctl
bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl -q s +1
bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl -q s 1-
Reload your config and adjust brightness with FN+F1 and FN+F2
|
|
|
|
| i3blocks Manjaro battery status script |
|
Posted by: Gerhard - 01-05-2020, 02:35 PM - Forum: Pinebook Pro Tutorials
- No Replies
|
 |
I did this to have battery-status on the i3bar:
Code: #!/bin/bash
#simple Shellscript for i3blocks on Pinebook pro
#05012020 geri123@gmx.net Gerhard S.
#battery-symbols: on Manjaro you need the awesome-terminal-fonts package installed!
PERCENT=$(cat /sys/class/power_supply/cw2015-battery/capacity)
STATUS=$(cat /sys/class/power_supply/cw2015-battery/status)
case $((
$PERCENT >= 0 && $PERCENT <= 20 ? 1 :
$PERCENT > 20 && $PERCENT <= 40 ? 2 :
$PERCENT > 40 && $PERCENT <= 60 ? 3 :
$PERCENT > 60 && $PERCENT <= 80 ? 4 : 5)) in
#
(1) echo $STATUS::"" ::$PERCENT%;;
(2) echo $STATUS::"" ::$PERCENT%;;
(3) echo $STATUS::"" ::$PERCENT%;;
(4) echo $STATUS::"" ::$PERCENT%;;
(5) echo $STATUS::"" ::$PERCENT%;;
esac
and in the i3blocks-config:
Code: [batterystat]
command=sh ~/.config/i3blocks/scripts/batterystat
interval=5
|
|
|
|
|