Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
Why projects like PinePho...
Forum: General Discussion on PinePhone
Last Post: Gary2003
1 hour ago
» Replies: 0
» Views: 22
|
irradium (based on crux l...
Forum: Linux on Quartz64
Last Post: mara
09-01-2025, 10:26 AM
» Replies: 6
» Views: 3,396
|
The PPP behaves as if the...
Forum: General Discussion of PinePhone Pro
Last Post: teekay
09-01-2025, 04:07 AM
» Replies: 2
» Views: 376
|
Pinephone Pro Neural Proc...
Forum: General Discussion on PinePhone
Last Post: biketool
09-01-2025, 02:05 AM
» Replies: 1
» Views: 1,407
|
Giving away a Pinebook Pr...
Forum: Pinebook Hardware and Accessories
Last Post: alchemist
09-01-2025, 12:24 AM
» Replies: 4
» Views: 1,978
|
A few questions before I ...
Forum: General Discussion on PinePhone
Last Post: L67GS
08-31-2025, 01:41 PM
» Replies: 4
» Views: 479
|
Experimental Mobian kerne...
Forum: PinePhone Pro Software
Last Post: teekay
08-31-2025, 11:31 AM
» Replies: 7
» Views: 1,061
|
Want to buy second hand P...
Forum: General Discussion on PinePhone
Last Post: Fish
08-31-2025, 07:18 AM
» Replies: 2
» Views: 2,014
|
Star64 Irradium (based on...
Forum: Getting Started
Last Post: mara
08-30-2025, 05:47 PM
» Replies: 7
» Views: 3,946
|
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
08-30-2025, 03:28 PM
» Replies: 6
» Views: 1,170
|
|
|
If you've messed up your eMMC Card - Solved |
Posted by: gregb49 - 07-02-2018, 04:59 AM - Forum: Linux on Rock64
- Replies (11)
|
 |
After some problems with my 0.6.44 install, I decided to go for a fresh installation.
I tried to wipe my 64GB eMMC to carry out a fresh install but whatever I did, it was no longer accessible by Etcher in Win 10 or Linux (Xubuntu 18.04). I tried many things such as deleting partitions in gparted, but gparted could not delete partitions nor set up a new partition table.
Both Win10 and Linux insisted that the eMMC was only 32MB in size, so I was stuck, however I was able to load xenial mate image 0.5.15 onto a SD Card, and use the pin shorting method to get this onto the eMMC card, as described in the wiki article. Pine wiki rock software releases
That ran fine, so I knew that the eMMC card was not faulty, however I also knew that the update would break the OS, which it duly did.
Eventually, out of desperation, I flashed an SD Card with aufan's 0.6.44 image and running that, with the eMMC installed, I managed to do the following on the Rock 64
- Through gparted, I deleted the main root partition, the one that was over 50gb in size.
- I ran /usr/local/bin/rock64_reset_emmc.sh (sudo ./rock64_reset_emmc.sh) (I took a clue from the wiki - noobs - troubleshooting your device, although the advice was for the Pine64 and was about using /ussr/local/sbin/update_script.sh which was not available for the rock64 - yes I was getting desperate with what appeared to be a dead eMMC card)
I've no idea which of those sorted out the problem, but I was able to reinstall ayufan's
Code: bionic-lxde-rock64-0.6.44-239-arm64.img.xz
under Win10. Note, Etcher through Linux still insisted that the eMMC card was a 32mb card, but Win10 Etched saw it as a 64gb card with multiple drives.
I'm hoping that this might help someone else who thinks they might have destroyed their eMMC card. I'm assuming that I did some damage to the uboot(?) partition but, really, I have no idea what I did wrong except by trying to wipe everything off the eMMC Card in the first place.
I'm sure someone out there knows a simpler way to restore your eMMC card.
|
|
|
NetBSD images for the pine (and other boards) |
Posted by: e-minguez - 07-02-2018, 04:53 AM - Forum: BSD on Pine A64(+)
- Replies (9)
|
 |
Thanks to @jmcneill for creating the builds!!!
Code: sudo dd if=./NetBSD-evbarm-aarch64-201811042130Z-pine64.img of=/dev/sdb
First boot
- Plug the microsd into the pine
- Boot the pine and wait for a couple of reboots (disk expansion)
- Login as root (no password)
- Configure password for root user
- Create user (in my case, 'edu') and add it to the wheel group
Code: useradd -m -G wheel edu
passwd edu
- Edit /etc/wpa_supplicant.conf with the appropriate ssid/psk:
Code: ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel
network={
ssid="my favourite network"
key_mgmt=WPA-PSK
psk="hunter2"
}
- Editing /etc/rc.conf to enable wpa_supplicant at boot. Notice my usb wireless adapter is urtwn0 (ifconfig will show you all the adapters):
Code: wpa_supplicant=YES
wpa_supplicant_flags="-i urtwn0 -c /etc/wpa_supplicant.conf"
- Start wpa_supplicant service:
Code: chmod 600 /etc/wpa_supplicant.conf
/etc/rc.d/wpa_supplicant start
Update to latest current
As root user:
Code: # Create a temporary directory
mkdir -p /root/tmp/kernel
cd /root/tmp/kernel
# Backup the current NetBSD kernel
cp /netbsd /onetbsd
# Download a full tar with kernel and dtb files
ftp https://nyftp.netbsd.org/pub/NetBSD-daily/HEAD/latest/evbarm-aarch64/binary/sets/kern-GENERIC64.tgz
tar xzvf /root/tmp/kernel/kern-GENERIC64.tgz
# Overwrite the current NetBSD kernel and dtb files
cp ./netbsd /netbsd
cp sun50i-a64-pine64* /boot/dtb/allwinner/
# Reboot
reboot
After reboot
Code: mkdir -p /root/tmp/sets
cd /root/tmp/sets
# Download and untar all sets
for x in base comp games man misc modules tests text xbase xcomp xfont xserver; do ftp https://nyftp.netbsd.org/pub/NetBSD-daily/HEAD/latest/evbarm-aarch64/binary/sets/$x.tgz; done
for x in base comp games man misc modules tests text xbase xcomp xfont xserver; do tar -C / -zxvpf $x.tgz; done
Update the /etc/ configuration
Code: for x in etc xetc; do ftp https://nyftp.netbsd.org/pub/NetBSD-daily/HEAD/latest/evbarm-aarch64/binary/sets/$x.tgz; done
etcupdate -s etc.tgz -s xetc.tgz
Verify everything works, then clean up and reboot
Code: rm -Rf /root/tmp
reboot
Based on @jmcneill instructions:
Code: <jmcneill> Updated sets are on the autobuild server: http://nycdn.netbsd.org/pub/NetBSD-daily/HEAD/latest/evbarm-aarch64/binary/sets/
<jmcneill> Backup current (working) kernel: cp /netbsd /onetbsd
<jmcneill> Then take "./netbsd" from kern-GENERIC64.tgz and put it as /netbsd
<jmcneill> and you probably want to update the dtb in /boot/dtb/allwinner/ to match
<jmcneill> (latest dtb is in that same file)
<jmcneill> reboot with the new kernel, make sure it works..
<jmcneill> (you need to be running the new kernel for this latest step -- old kernel may not support new userland)
<jmcneill> then extract sets..
<jmcneill> for x in base comp games man misc modules tests text xbase xcomp xfont xserver; do tar -C / -zxvpf $x.tgz; done
<jmcneill> note that I skipped the debug sets (they are big) and etc/xetc sets (we upgrade those separately)
<jmcneill> To see what sets you have installed, ls /etc/mtree/set.*
<jmcneill> Then to update etc and xetc: etcupdate -s etc.tgz -s xetc.tgz
Source https://gist.github.com/e-minguez/0f637c...ddbc5575f5
|
|
|
Selling 14" Pinebook ($90+Shipping) |
Posted by: Nierika - 07-01-2018, 09:12 PM - Forum: General Discussion on Pinebook
- Replies (4)
|
 |
I've had my Pinebook since July of last year but haven't been using it as much as I thought I would.
I have a 14" Pinebook with 16 GB eMMC that has seen maybe 15 hours of use since I received it. The screen has one dead pixel (it arrived like that from the factory) but other than that is in great condition.
I'm located in the US in Philadelphia and could meet locally or ship. I can provide pictures upon request as well as proof of purchase.
$90 + Actual Shipping Costs (Send me a message with your shipping address and I can look up costs)
(I had posted a thread earlier looking for a trade, but didn't get any bites. If that may interest you check out the original thread here: https://forum.pine64.org/showthread.php?tid=5975)
|
|
|
Randomly dropping Internet connection |
Posted by: Frogmella - 07-01-2018, 08:05 AM - Forum: General Discussion on ROCK64
- No Replies
|
 |
Running under the Android OS. v7, I think.
My Rock 64 often will not make an ethernet connection to my router during boot up or alternatively it connects initially but then drops its connection randomly, while streaming video, and then will not reconnect on reboot.
Other devices on the network, computers/phones have no problem with their connection, either wired (computers) or wireless(phones only).
I've swapped over cables and wall blocks without any change. These experiments suggest the problem lies with the Rock64 itself as its connective hardware has been substituted for known good items and the problem persists.
Its a bit of a nuisance.
Can anyone suggest a solution before I run off and buy a wireless dongle?
Thanks in advance as always.
|
|
|
Problem setting Pine64 as a USB device |
Posted by: martin357 - 07-01-2018, 02:53 AM - Forum: Linux on PINE A64-LTS / SOPINE
- Replies (2)
|
 |
Hello,
I am looking for help with setting the Pine64 LTS upper USB port as a USB Device(serial port)
My setup:
Pine64 LTS
Armbian_5.38_Pine64so_Ubuntu_xenial_default_3.10.107( I have also tried Armbian_5.35_Pine64so_Ubuntu_xenial_default_3.10.105 with the same results)
Original kernel configuration: Original kernel configuration
My current configuration: My current configuration
Kernel sources I use are form armbian package linux-source-default-pine64_5.38_all.deb and contain git versioning information with remote repository at https://github.com/ayufan-pine64/linux-pine64
What I tried:
Rebooting without SD card into FEL mode to see if Pine will be enumerated on my PC, this works ok, so the actual connection works and the USB port on the Pine I picked is the correct one.
Armbian seem to be lacking the g_serial driver, so I recompiled the kernel with gadget support + g_serial module.
From what I understand https://www.kernel.org/doc/Documentation...serial.txt, doing :
Code:
Code: echo 0 > /sys/bus/platform/devices/usbc0.6/otg_role # I read somewhere that it's to be disabled before loading g_serial
modprobe g_serial use_acm=0
echo usb_device > /sys/bus/platform/devices/usbc0.6/otg_role # Cannot find where I got this from, but it makes sense
should be all that is required to make it work.
Here is the dmesg output taken after running these commands: https://pastebin.com/AFYE2f2n
I tried this with and without Device Drivers -> USB support -> OTG support support in the kernel, does not seem to make a difference.
What happens:
/dev/ttyGS0 is created as expected
What does not happen:
I when I connect the Pine to my PC, it does not enumerate(it's missing from lsusb )
Can anyone tell me what I am doing wrong? Do I need some different version of the kernel?
|
|
|
Anyone able to play x265 10bit? |
Posted by: JeffsNetflixPassword - 06-30-2018, 06:02 PM - Forum: Android on Rock64
- Replies (5)
|
 |
I'm able to play some x265 videos but not all. It seems that it's the ones that are encoded in 10bit are the ones that won't play, but I'll admit I don't know everything about encoding specs.
I typically use VLC or MX Player. Would something else be better?
I assume others are using their Rock64 to play x265 media files. How's it working?
|
|
|
What images will rock have available on release? |
Posted by: tymbusku - 06-29-2018, 06:33 AM - Forum: Linux on Rock64
- Replies (1)
|
 |
Chào mọi người !
Tôi havent thấy bất kỳ hình ảnh os phát hành được đăng để thử nghiệm hoặc cho những người có ban phát hành trước hoặc cách khác. Tôi đoán im chỉ hỏi hình ảnh os chúng ta sẽ thấy khi lô hàng đầu tiên nếu chúng tôi đặt hàng trước?
Im quan tâm đến debian chủ yếu, nhưng im cũng quan tâm đến những gì els e sẽ có sẵn. Với mức giá này có thể thay thế một số pi cho tôi.
|
|
|
|