| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 29,701
» Latest member: Stunnned
» Forum threads: 16,260
» Forum posts: 117,191
Full Statistics
|
| Latest Threads |
auto-owning the SD card i...
Forum: PineTab Software
Last Post: biketool
7 hours ago
» Replies: 1
» Views: 372
|
PinePhone, PinePhone Pro,...
Forum: PinePhone Hardware
Last Post: biketool
7 hours ago
» Replies: 1
» Views: 137
|
Old Danctnix server in Pa...
Forum: PineTab Software
Last Post: Stunnned
Yesterday, 01:27 PM
» Replies: 2
» Views: 183
|
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,543
|
Reinstallation Arch Linux...
Forum: General Discussion on PineTab
Last Post: rth
11-22-2025, 08:25 PM
» Replies: 1
» Views: 224
|
Recycling pinephone as ho...
Forum: PinePhone Hardware
Last Post: biketool
11-20-2025, 09:04 AM
» Replies: 5
» Views: 625
|
Light Sensor / Proximity ...
Forum: General Discussion on PinePhone
Last Post: WhiteHexagon
11-18-2025, 03:07 PM
» Replies: 1
» Views: 199
|
How to stop it turning on
Forum: General Discussion on PinePhone
Last Post: biketool
11-18-2025, 02:30 PM
» Replies: 3
» Views: 486
|
8/24 status of JumpDrive
Forum: PinePhone Software
Last Post: biketool
11-18-2025, 01:27 PM
» Replies: 5
» Views: 2,192
|
Questions about running U...
Forum: General Discussion on PineTime
Last Post: alicesphere
11-18-2025, 12:48 AM
» Replies: 0
» Views: 119
|
|
|
| Microphone Input |
|
Posted by: voltist - 02-22-2020, 09:53 PM - Forum: UBPorts on PinePhone
- No Replies
|
 |
Hi all,
I'm trying to get microphone input working, but I'm not having any luck. Even with a alsa config which I believe should work, my recordings (with arecord) are empty. Anyone having any luck with this?
|
|
|
|
| Manjaro with BSP kernel |
|
Posted by: jichu4n - 02-22-2020, 04:35 PM - Forum: Linux on Pinebook Pro
- No Replies
|
 |
I've been exploring the possibility of running Manjaro on the eMMC but with a BSP kernel on the SD card. Not totally stable yet but wanted to see if anyone has thoughts on this.
Why
I love the overall experience in Manjaro ARM a lot (up-to-date packages, AUR etc). I've installed it to the eMMC and use it on a daily basis. The included mainline kernel has come a long way and mostly works well, but I'm still running into a few issues compared to the BSP kernel in mrfixit2001's Debian and ayufan's Ubuntu images: - Redshift doesn't work. This is a big problem for me as I use the laptop mostly in the evenings at home.
- Sound from the speakers is fairly quiet even at max volume.
- S3 sleep: wakes up a few seconds after closing the lid.
- (minor) Power LED indicator doesn't change color during sleep.
So I wondered if it'd be possible to use the BSP kernel from ayufan with Manjaro, but without borking the default mainline kernel. The basic idea:- Write ayufan's Bionic image containing BSP kernel to SD card
- Change the kernel boot flags on SD card to use the Manjaro partition on the eMMC as rootfs
- Copy over BSP kernel modules and firmware from Bionic image to Manjaro partition on the eMMC
Now, without the SD card, the laptop would still boot normally from the eMMC into "regular" Manjaro with mainline kernel. With the SD card inserted, it would boot from the kernel and initramfs on the SD card, but then still use the Manjaro userspace on the eMMC.
How
This is what I did:
1. Write ayufan's Bionic image to SD card:
Code: xzcat bionic-mate-pinebookpro-0.9.14-1159-armhf.img.xz | sudo dd of=/dev/mmcblk1 bs=1M status=progress conv=fsync
2. Reboot into Bionic on the SD card, verify everything is working.
3. Mount the Manjaro partition on the eMMC.- Note that with the mainline kernel in Manjaro, mmcblk1 is the SD card and mmcblk0 is the eMMC storage, but with the BSP kernel in Bionic it's the other way around where mmcblk0 is the SD card and mmcblk1 is the eMMC storage.
- Say the Manjaro root partition is /dev/mmcblk1p1 in Bionic and is mounted at /mnt. The default Manjaro eMMC installer sets a label of "ROOT" on the partition, which you can confirm with "ls -l /dev/disk/by-label/".
4. Edit /boot/extlinux/extlinux.conf on the SD card.Change the kernel boot argument "root=LABEL=linux-root" to "root=LABEL=ROOT" (or to "root=/dev/mmcblk1p1"). Again, make sure to confirm the label maps to the correct partition with "ls -l /dev/disk/by-label/".- The line to be edited is the first line that starts with "append". After editing, the first few lines of my /boot/extlinux/extlinux.conf looked like this:
Code: timeout 10
menu title select kernel
label kernel-4.4.190-1233-rockchip-ayufan-gd3f1be0ed310
kernel /boot/vmlinuz-4.4.190-1233-rockchip-ayufan-gd3f1be0ed310
initrd /boot/initrd.img-4.4.190-1233-rockchip-ayufan-gd3f1be0ed310
devicetreedir /boot/dtbs/4.4.190-1233-rockchip-ayufan-gd3f1be0ed310
append rw panic=10 init=/sbin/init coherent_pool=1M ethaddr=${ethaddr} eth1addr=${eth1addr} serial=${serial#} cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1 root=LABEL=ROOT rootwait rootfstype=ext4
5. Copy over kernel modules and firmware from Bionic on the SD card to the Manjaro partition on the eMMC.- I located the necessary modules by looking through the "linux-image-4.4.190-1233-rockchip-ayufan-gd3f1be0ed310" and "board-package-pinebookpro-0.9-182" packages:
Code: dpkg -L board-package-pinebookpro-0.9-182 linux-image-4.4.190-1233-rockchip-ayufan-gd3f1be0ed310
- Ultimately, here are the files I copied over:
Code: sudo cp -a /lib/modules/4.4.190-1233-rockchip-ayufan-gd3f1be0ed310 /mnt/lib/modules/sudo cp -a /usr/lib/linux-image-4.4.190-1233-rockchip-ayufan-gd3f1be0ed310 /mnt/usr/lib/sudo cp -a /vendor /mnt/sudo cp -a /lib/firmware/rtlbt /mnt/lib/firmware/[/list]
6. Fix wi-fi by editing /mnt/etc/NetworkManager/NetworkManager.conf (on the Manjaro partition) to add:
Code: [device]
wifi.scan-rand-mac-address=no
7. Reboot with SD card inserted. If all went well, you should be able to log in to the eMMC Manjaro install as normal.
Hope this helps!
|
|
|
|
| Next Pinephone Wish List and BraveHeart Feedback |
|
Posted by: Starlord - 02-22-2020, 03:54 PM - Forum: General Discussion on PinePhone
- No Replies
|
 |
My unit hasn't arrived yet but a friend was kind enough to trade me his for mine whenever it comes in.
I've had a few days to distrohop and play with the hardware so I feel like I can give some feedback in that regard. I also wanted to post some early wishlist items for the next version.
Build Quality 9/10 - Does NOT feel like a $150 phone in the hand. I've handed it off to a few apple users and they were shocked at the price. Chassis does have some flex but that's to be expected when you don't have the rigidity benefit sandwiching your hardware between 2 sealed pieces of glass.
Screen 7/10 - One of the better IPS panels I've seen on a phone, coming from a nexus 5 it's a huge upgrade.
Loud Speaker Quality 4/10 - The biggest weakness I've found so far. Hands down the worst speaker I've heard on a phone yet. It does the job, but you cringe a little every time you use it for music. It's fine for vocal clarity.
Earpiece Speaker Quality 8/10 - Not quite as loud as my pixel 4, but it's perfectly fine even in somewhat noisy environments (I have 20 3d printers operating in my office)
I haven't evaluated the cameras or the headphone jack/dac quality yet. Trying to get FLAC playing has been an exercise in futility. I'll post pics in this thread of the camera once I figure out how to get it working (just haven't gotten around to it yet).
Now on to the wishlist for the next version, and yes I realize it's early but it's not stuff that's gonna change between brave heart and final. So it would need to be a new version.
Socketed EMMC - Being able to upgrade storage size in the future as well as the ability to have multiple backup EMMCs with different distros would be killer. Though I do admit I have no idea how much that would up the cost or increase the overall footprint of the device.
A better loud speaker - Honestly the biggest weakness of the current phone is it's loud speaker so far.
UHS-II Support on the Micro SD slot - The 50MB/s transfer rate limit is killing me. There are UHS-2 cards that rival and even exceed emmc speeds. Would make the device significantly more relevant as a general computer (convergence etc). With this, I can live with a non socketed emmc (though I'd prefer both for different reasons)
Software still has a ways to go, but im amazed at the progress being made every day. I'm still trying to decide what I wanna settle down on and see about contributing.
|
|
|
|
| PBP 4 Sale |
|
Posted by: Uricasha - 02-22-2020, 08:53 AM - Forum: General Discussion on Pinebook Pro
- Replies (1)
|
 |
Hi,
I switched from Mac to PBP for privacy reasons and I appear to be way over my head. Therefore, I will sell my PBP for $248 ($199 [purchase price]+ $33 [DHL from China] + 15 [Priority Mail from Arizona]).
The laptop doesn't seem to have any issues i see on the forum. There are no dead pixels. Since I'm new to Linux, I didn't realize there was a difference between ARM devices and x86 devices for software installation..... Either way, it's still a great laptop, just not my cup of tea for now until the software progresses for ARM.
Price will be for $248 for US based purchases. For international, I will recalculate price from my house.
Thanks!!
Matt
Here is a dropbox link with pictures.
https://www.dropbox.com/sh/xrv1y64ejpdaq...JyKKa?dl=0
|
|
|
|
| terminal command for sd card size |
|
Posted by: pnphn - 02-22-2020, 03:03 AM - Forum: PostmarketOS on PinePhone
- Replies (5)
|
 |
so i'm not super techy and i've postmarketos on a 32gb sd card
but it seems like i have the image allocated only to a partition of the sd
i tried so many commands (that i found on the internet) but i keep getting lack of storage space messages.
does anyone know the right command that wil work in the terminal of pmos?
i can recall i did something like resize2fs one for my retro single board computer
but that doesn't seem to work eather. i really want this fixes so i could clone some repos to my phone.
thanks!
|
|
|
|
| NVME adapter |
|
Posted by: MIchael - 02-21-2020, 06:41 PM - Forum: Pinebook Pro Hardware and Accessories
- Replies (3)
|
 |
I read the thread Luke made about the NVME adapters, and I'm unsure of which I received in the mail today. That post was made in October and this one says it's a V.2 from November but I'm still unclear. I have no problem cutting it down, just don't want to if it's not needed.
Here's a pic of the board along with a usb adapter and 128gb chip. If I had to guess, I'd say the SD card adapter writes image faster but it doesn't take long either way.
Is this the new model or the old and if old, should I wait for whatever parts will be shipped.
Thanks
https://imgur.com/6fUK2PB
|
|
|
|
|