| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 29,698
» Latest member: rth
» Forum threads: 16,260
» Forum posts: 117,187
Full Statistics
|
| Latest Threads |
Old Danctnix server in Pa...
Forum: PineTab Software
Last Post: brorean
Yesterday, 08:45 PM
» Replies: 1
» Views: 108
|
Hi everybody!
Forum: General
Last Post: MadisynErnser
11-20-2025, 10:03 PM
» Replies: 2
» Views: 2,259
|
PinePhone, PinePhone Pro,...
Forum: PinePhone Hardware
Last Post: brb78
11-20-2025, 04:15 PM
» Replies: 0
» Views: 82
|
Recycling pinephone as ho...
Forum: PinePhone Hardware
Last Post: biketool
11-20-2025, 09:04 AM
» Replies: 5
» Views: 584
|
Light Sensor / Proximity ...
Forum: General Discussion on PinePhone
Last Post: WhiteHexagon
11-18-2025, 03:07 PM
» Replies: 1
» Views: 157
|
How to stop it turning on
Forum: General Discussion on PinePhone
Last Post: biketool
11-18-2025, 02:30 PM
» Replies: 3
» Views: 469
|
8/24 status of JumpDrive
Forum: PinePhone Software
Last Post: biketool
11-18-2025, 01:27 PM
» Replies: 5
» Views: 2,146
|
Questions about running U...
Forum: General Discussion on PineTime
Last Post: alicesphere
11-18-2025, 12:48 AM
» Replies: 0
» Views: 90
|
Difficulty with openSUSE ...
Forum: PinePhone Software
Last Post: danm1988
11-17-2025, 07:49 AM
» Replies: 0
» Views: 96
|
Second screen mirroring
Forum: General
Last Post: andrekyler
11-17-2025, 01:06 AM
» Replies: 3
» Views: 1,912
|
|
|
| How to install Ubuntu to eMMC and to install KDE (Neon) |
|
Posted by: Wizzard - 10-24-2019, 03:08 AM - Forum: Pinebook Pro Tutorials
- Replies (66)
|
 |
Hi, I will share my experiences with installing Ubuntu to eMMC, cause I want a fast and up to date system 
1. Write Ubuntu image to SD card. I used Mate build: https://github.com/ayufan-rock64/linux-b...mhf.img.xz and decompress it using unxz and write to SD.
I RECOMMEND TO CHECK LSBLK OR GPARTED WHICH DEVICE IS YOUR SDCARD BEFORE RUNNING "DD" COMMAND!
Code: sudo apt install gparted
Code: unxz bionic-mate-pinebookpro-0.9.14-1159-armhf.img.xz
sudo dd if=bionic-mate-pinebookpro-0.9.14-1159-armhf.img of=/dev/mmcblk0 bs=4M status=progress
2. Boot Ubuntu from SD card.
3. Download Ubuntu image again when booted from SD or copy the downloaded file from eMMC.
4. Write Ubuntu image to emmc.
I RECOMMEND TO CHECK LSBLK OR GPARTED WHICH DEVICE IS YOUR EMMC BEFORE RUNNING "DD" COMMAND!
Code: unxz bionic-mate-pinebookpro-0.9.14-1159-armhf.img.xz
sudo dd if=bionic-mate-pinebookpro-0.9.14-1159-armhf.img of=/dev/mmcblk1 bs=4M status=progress
5. Turn off PBP, remove SD card and turn PBP on. It should boot with Ubuntu installed.
When it does not boot, boot from SD card again and check the partitions on the eMMC in Gparted. I had the problem that boot partition was written in different fs (fat32 instead of fat16) so I needed to delete that boot partition from eMMC and to copy the boot partition from SD to eMMC in Gparted. Then it worked. I also resized the rootfs on eMMC to fill whole available space.
6. Now you have Ubuntu installed on eMMC and you can also boot from SD card, but only the same operating system. If we need also to boot other operating systems, we need to apply uboot fix. So download all the files from here https://github.com/mrfixit2001/updates_r...filesystem and run the mrfixit_update.sh script while running from eMMC. From now on you should be able to boot also other OS from SD like before.
7. Before installing KDE I suggest to enable ubuntu-backports and ubuntu-proposed repos in sources.list to get more recent packages.
My sources.list:
Code: deb http://ports.ubuntu.com/ubuntu-ports/ bionic main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ bionic-security main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ bionic-updates main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ bionic-backports main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ bionic-proposed main restricted universe multiverse
Before installing KDE I also recommend to enable Kubuntu PPA Backports to get a little newer packages:
Code: sudo add-apt-repository ppa:kubuntu-ppa/backports
Alternativelly, you can try KDE Neon packages for the newest KDE software.
Code: sudo apt-add-repository http://archive.neon.kde.org/user
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E6D4736255751E5D
sudo apt update
Installing KDE:
Code: sudo apt install plasma-desktop kde-full kubuntu-full kubuntu-desktop krusader konsole plasma-nm muon kwin sddm kinfocenter systemsettings powerdevil kde-config-sddm kde-config-screenlocker kde-config-gtk-style partitionmanager libkdesu5 kubuntu-notification-helper libkf5su-bin
Optionally install Calligra Office Suite, what is KDE alternative for LibreOffice.
Code: sudo apt install calligra
After installing you may just restart the computer and select Plasma in SDDM login screen.
To enable Netflix and Spotify in Chromium, run:
Code: sudo install_widevine_drm.sh
Credits: @ayufan for Ubuntu builds and @Mrfixit2001 for uboot fix.
|
|
|
|
| Frequent kernel panic, possibly due to PCIe SSD? |
|
Posted by: meier - 10-24-2019, 12:59 AM - Forum: Linux on RockPro64
- Replies (4)
|
 |
I am running the RockPro64 board as a headless system with the following configuration:
*Armbian Ubuntu 18.04 minimal (terminal only)
* built from "source" with default kernel configuration (excluding option WIREGUARD)
* booting from eMMC (mounted read-only, with overlayrootfs)
* using a NVMe M.2 SSD of various brands with PCIe adapter
The system itself works great, but we experience frequent kernel panics (every few days). Although the kernel is configured to reboot after 10s on panic, the system just freezes.
I already reached out to Armbian on the following post, but maybe someone here has an idea on how to tackle this issue?
https://forum.armbian.com/topic/10881-in...ll-pointer
I would really appreciate any hint or pointer on how to solve that, we are somewhat in despair.
|
|
|
|
| NVMe adaptor issue solved |
|
Posted by: Luke - 10-23-2019, 06:00 PM - Forum: Pinebook Pro Hardware and Accessories
- No Replies
|
 |
Te NVMe adapter issue has been identified and resolved.
If you already have an adaptor then you'll be getting the bits and pieces necessary to make it work properly. Needless to say, future adapters will include the solution to the problem
Those of you who have an adapter, until you receive the necessary stuff for the fix please do not use it in the Pinebook Pro chassis.
Thanks for testing and helping us get to the bottom of this.
[edit] posting this just as a notice and locking this thread to avoid discussion in more places than one - If you wish to discuss this further please post here.
|
|
|
|
| What's the most useful thing...... |
|
Posted by: User 6582 - 10-23-2019, 04:56 PM - Forum: General Discussion on Pinebook Pro
- Replies (2)
|
 |
Hello all,
Wanted to get some input on how I can make my time using the Pinebook Pro most useful at this time.
Currently, I'm using the supplied operating system as though it is my "everyday", working computer. Seems like it might be possible to incorporate more than just everyday use like browsers, music or....
Any thoughts?
Thanks! :-)
|
|
|
|
| Why PineTime can't run Linux, and why this is OK |
|
Posted by: fire219 - 10-23-2019, 09:49 AM - Forum: General Discussion on PineTime
- Replies (4)
|
 |
Hello everyone, and welcome to the new PineTime subforum!
I'd like to give an answer to a set of questions that has come up again and again in social media and our chat network:
"Will it run Linux?"
"Does it run Linux?"
"Why doesn't it run Linux?"
In short, the answer is no. But it's not because we're turning our backs on the open-source community or any horrible reason like that.
As you have noticed if you've paid attention to our announcements, the PineTime is rather small and very affordable. This requires some compromises in hardware. The chips that we use in our existing platforms (Allwinner A64, Rockchip RK33xx) are far too large dimensionally and consume too much power to be practical. "Big-name" smartwatches such as the Apple Watch and Samsung Gear use cut-down and low-power relatives of normal smartphone SoCs, which could run Linux (and do, if you count Android). However, these chips would heavily increase the price point and tend to not be very open-source friendly.
So in this case, the solution is to step down from large (Cortex-A) SoCs into the world of small low-power (Cortex-M) microcontrollers. That is what has been done for the PineTime -- it is using a chip from the nRF52 family from Nordic Semiconductor. In particular, we are currently looking at the nRF52832. I guess I ought to lay out the relevant specs real quick:
- 64MHz ARM Cortex-M4F
- 64KB RAM
- 512KB Flash
Before anyone gets too fearful, this chip isn't much like the Arduino Uno you may think of when you hear the term "microcontroller". It's still using a fairly quick processor core at it's heart -- a 64MHz ARM Cortex-M4F. This won't exactly be running AAA games, but for a small and efficiently-programmed smartwatch it should be more than enough. It's also quite similar to what the Pebble series of smartwatches used. However, it does lead us to the first issue for running Linux:
Linux requires an MMU (memory management unit) to run.
I won't go into deep details of what an MMU is (tl;dr: allows for an OS to segment and protect parts of memory), but needless to say the Cortex-M4F core does not have one.
Now, those in the know might be currently yelling at me that there is a solution and it's name is uCLinux! Anyone saying that is not wrong, as the point of the uCLinux project is to port Linux to devices which do not have an MMU. However, even if we did try to use uCLinux, there's another problem:
Linux wants a lot of RAM.
Ok, in the modern sense, not actually a lot. In my own research, I've seen that the bare minimum recommended for a uCLinux image on a Cortex-M4 is about 4MB. But when you look back at the specs I listed, we only have 64KB. Now, maybe some very skilled developers could perform magic to make uCLinux boot within this envelope, but it would still be nearly unusable.
So at this point, many of you may be asking what is the point?, thinking that this hardware is useless and nothing can run on it. If you were thinking that, you're actually wrong. Now we get to the happier part of this wall of text:
Linux may not run, but plenty of open-source embedded OSs thrive in this type of hardware!
We are far from the only group to want to make a usable consumer smart-device with microcontrollers. Thus, enter the world of embedded OSs, such as Zephyr, FreeRTOS, and NuttX. Building off one of these, we can actually make an open-source device which will perform smoothly with a cheap microcontroller which sips power. Zephyr is even part of the Linux Foundation umbrella of projects!
As of writing (October 23, 2019), several developers who have already received PineTime devkits are exploring all the options, so that we can find the one which best fits our needs.
Hopefully this clears up a lot of confusion and concerns, while being informative. I definitely ended up putting more information in this post than I originally intended...
|
|
|
|
| GPIO maps |
|
Posted by: tuxd3v - 10-22-2019, 06:40 PM - Forum: Linux on RockPro64
- No Replies
|
 |
Hello all,
I have been mapping gpios pins, with the help of Frank Mankel, first of all thanks to him, for the great help! 
The gpio pins are, from his previous work and the Idea was to build a more polished work, and a bit more detailed were it matter than the gpio, in the wiki..
Til now I produced the following maps, I submit so that you acn give me your feedback..
If someone has Wifi/Bluetooth conectors detailes description, it would be very nice..
Best Regards,
tux
|
|
|
|
| No boot with Supermicro AOC-SASLP-MV8 (serial output) |
|
Posted by: kram0000 - 10-22-2019, 04:00 PM - Forum: RockPro64 Hardware and Accessories
- No Replies
|
 |
Hello,
I'm using mrfixit's minimal debian release (v190531) and boot with a cpu lockup. I hope someone smarter than I am can take a look to see if there's an easy fix, thanks!
Here's the serial output:
Code: ¿|²DDR Version 1.20 20190314
In
channel 0
CS = 0
MR0=0xB8
MR4=0x1
MR5=0xFF
MR8=0x10
MR12=0x72
MR14=0x72
MR18=0x0
MR19=0x0
MR24=0x8
MR25=0x0
channel 1
CS = 0
MR0=0xB8
MR4=0x1
MR5=0xFF
MR8=0x10
MR12=0x72
MR14=0x72
MR18=0x0
MR19=0x0
MR24=0x8
MR25=0x0
channel 0 training pass!
channel 1 training pass!
change freq to 400MHz 0,1
channel 0
CS = 0
MR0=0xB8
MR4=0x1
MR5=0xFF
MR8=0x10
MR12=0x72
MR14=0x72
MR18=0x0
MR19=0x0
MR24=0x8
MR25=0x0
channel 1
CS = 0
MR0=0xB8
MR4=0x1
MR5=0xFF
MR8=0x10
MR12=0x72
MR14=0x72
MR18=0x0
MR19=0x0
MR24=0x8
MR25=0x0
channel 0 training pass!
channel 1 training pass!
change freq to 800MHz 1,0
Channel 0: LPDDR4,800MHz
Bus Width=32 Col=10 Bank=8 Row=16 CS=1 Die Bus-Width=16 Size=2048MB
Channel 1: LPDDR4,800MHz
Bus Width=32 Col=10 Bank=8 Row=16 CS=1 Die Bus-Width=16 Size=2048MB
256B stride
ch 0 ddrconfig = 0x101, ddrsize = 0x40
ch 1 ddrconfig = 0x101, ddrsize = 0x40
pmugrf_os_reg[2] = 0x32C1F2C1, stride = 0xD
OUT
Boot1: 2019-03-14, version: 1.19
CPUId = 0x0
ChipType = 0x10, 249
mmc: ERROR: SDHCI ERR:cmd:0x102,stat:0x18000
mmc: ERROR: Card did not respond to voltage select!
emmc reinit
mmc: ERROR: SDHCI ERR:cmd:0x102,stat:0x18000
mmc: ERROR: Card did not respond to voltage select!
emmc reinit
mmc: ERROR: SDHCI ERR:cmd:0x102,stat:0x18000
mmc: ERROR: Card did not respond to voltage select!
SdmmcInit=2 1
mmc0:cmd5,20
SdmmcInit=0 0
BootCapSize=0
UserCapSize=15262MB
FwPartOffset=2000 , 0
StorageInit ok = 44043
SecureMode = 0
SecureInit read PBA: 0x4
SecureInit read PBA: 0x404
SecureInit read PBA: 0x804
SecureInit read PBA: 0xc04
SecureInit read PBA: 0x1004
SecureInit read PBA: 0x1404
SecureInit read PBA: 0x1804
SecureInit read PBA: 0x1c04
SecureInit ret = 0, SecureMode = 0
atags_set_bootdev: ret:(0)
GPT 0x3380ec0 signature is wrong
recovery gpt...
GPT 0x3380ec0 signature is wrong
recovery gpt fail!
LoadTrust Addr:0x4000
No find bl30.bin
No find bl32.bin
Load uboot, ReadLba = 2000
hdr 0000000003380880 + 0x0:0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
Load OK, addr=0x200000, size=0xd35dc
RunBL31 0x10000
NOTICE: BL31: v1.3(debug):370ab80
NOTICE: BL31: Built : 09:23:41, Mar 4 2019
NOTICE: BL31: Rockchip release version: v1.1
INFO: GICv3 with legacy support detected. ARM GICV3 driver initialized in EL3
INFO: Using opteed sec cpu_context!
INFO: boot cpu mask: 0
INFO: plat_rockchip_pmu_init(1181): pd status 3e
INFO: BL31: Initializing runtime services
WARNING: No OPTEE provided by BL2 boot loader, Booting device without OPTEE initialization. SMC`s destined for OPTEE will return SMC_UNK
ERROR: Error initializing runtime service opteed_fast
INFO: BL31: Preparing for EL3 exit to normal world
INFO: Entry point address = 0x200000
INFO: SPSR = 0x3c9
U-Boot 2017.09 (May 31 2019 - 10:20:19 -0400)
Model: Rockchip RK3399 Evaluation Board
PreSerial: 2
DRAM: 3.9 GiB
Sysmem: init
Relocation Offset is: f5bfa000
I2c speed: 400000Hz
PMIC: RK808
vdd_center 900000 uV
vdd_log init 900000 uV
rk_board_init PWM2 pinctrl init fail!
vdd_center 900000 uV
DCDC_REG1@ vdd_center: 750000uV <-> 1400000uV, set 900000uV, enabling | suspend -61uV, disabled
DCDC_REG4@ vcc_1v8: 1800000uV <-> 1800000uV, set 1800000uV, enabling | suspend 1800000uV, enabling
LDO_REG1@ vcc1v8_dvp: 1800000uV <-> 1800000uV, set 1800000uV, enabling | suspend 1800000uV, enabling
LDO_REG4@ vcc_sd: 3300000uV <-> 3300000uV, set 3300000uV, enabling | suspend 3300000uV, enabling
LDO_REG7@ vcca1v8_codec: 1800000uV <-> 1800000uV, set 1800000uV, enabling | suspend 1800000uV, enabling
LDO_REG8@ vcc_3v0: 3000000uV <-> 3000000uV, set 3000000uV, enabling | suspend 3000000uV, enabling
SWITCH_REG2@ vcc3v3_s0: -61uV <-> -61uV, set 0uV, enabling | suspend -61uV, disabled
dc-12v@ dc_12v: 12000000uV <-> 12000000uV, set 12000000uV, enabling | suspend -61uV, enabling (ret: -38)
vcc-sys@ vcc_sys: 5000000uV <-> 5000000uV, set 5000000uV, enabling | suspend -61uV, enabling (ret: -38)
vcc3v3-sys@ vcc3v3_sys: 3300000uV <-> 3300000uV, set 3300000uV, enabling | suspend -61uV, enabling (ret: -38)
vcc-phy-regulator@ vcc_phy: -61uV <-> -61uV, set -61uV, enabling | suspend -61uV, enabling
vcc5v0-host-en@ vcc5v0_host: 5000000uV <-> 5000000uV, set 5000000uV, enabling | suspend -61uV, enabling (ret: -38)
vcc5v0-typec0-en@ vcc5v0_typec0: -61uV <-> -61uV, set -61uV, disabled | suspend -61uV, enabling
vcc5v0-sys@ vcc5v0_sys: 5000000uV <-> 5000000uV, set 5000000uV, enabling | suspend -61uV, enabling (ret: -38)
vcc12v-pcie-regulator@ vcc12v_pcie: 12000000uV <-> 12000000uV, set 12000000uV, enabling | suspend -61uV, enabling (ret: -38)
vdd_log init 900000 uV
vdd_log@ vdd_log: 800000uV <-> 1400000uV, set 900000uV, enabling | suspend -61uV, enabling ; init 900000uV
vcc1v8-sdio@ vcc1v8_sdio: 1800000uV <-> 1800000uV, set 1800000uV, enabling | suspend -61uV, enabling (ret: -38)
MMC: dwmmc@fe310000: 2, sdhci@fe330000: 0, dwmmc@fe320000: 1
Invalid bus 0 (err=-19)
*** Warning - spi_flash_probe_bus_cs() failed, using default environment
In: serial
Out: serial
Err: serial
Model: Rockchip RK3399 Evaluation Board
RKPARM: Invalid parameter part table
switch to partitions #0, OK
mmc1 is current device
do_rkimg_test found IDB in SDcard
Bootdev(atags): mmc 1
PartType: DOS
get part misc fail -1
boot mode: None
CLK: (uboot. arml: enter 816000 KHz, init 816000 KHz, kernel 0N/A)
CLK: (uboot. armb: enter 24000 KHz, init 24000 KHz, kernel 0N/A)
aplll 816000 KHz
apllb 24000 KHz
dpll 800000 KHz
cpll 24000 KHz
gpll 800000 KHz
npll 600000 KHz
vpll 24000 KHz
aclk_perihp 133333 KHz
hclk_perihp 66666 KHz
pclk_perihp 33333 KHz
aclk_perilp0 266666 KHz
hclk_perilp0 88888 KHz
pclk_perilp0 44444 KHz
hclk_perilp1 100000 KHz
pclk_perilp1 50000 KHz
Net: eth0: ethernet@fe300000
Hit key to stop autoboot('CTRL+C'): 0
Could not find misc partition
ANDROID: reboot reason: "(none)"
load_android_image: Can't find part: boot
Android boot failed, error -1.
=Booting Rockchip format image=
boot_rockchip_image kernel or boot part info error
RKPARM: Invalid parameter part table
switch to partitions #0, OK
mmc1 is current device
Scanning mmc 1:1...
Found /extlinux/extlinux.conf
Retrieving file: /extlinux/extlinux.conf
reading /extlinux/extlinux.conf
404 bytes read in 3 ms (130.9 KiB/s)
1: ROCKPRO
Retrieving file: /Image
reading /Image
25612296 bytes read in 2715 ms (9 MiB/s)
append: console=ttyS2,1500000n8 rw root=/dev/mmcblk0p2 rootwait rootfstype=ext4 panic=10 init=/sbin/init coherent_pool=1M ethaddr=22:a4:46:f5:6e:39 eth1addr= serial=89f3230060b7d7e0 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1 video=HDMI-A-1:1920x1080@60 video=eDP-1:1920x1080@60 quiet loglevel=3 vga=current
Retrieving file: /rk3399-rockpro64.dtb
reading /rk3399-rockpro64.dtb
96363 bytes read in 13 ms (7.1 MiB/s)
## Flattened Device Tree blob at 08300000
Booting using the fdt blob at 0x8300000
Loading Device Tree to 00000000e9dc7000, end 00000000e9de186a ... OK
Adding bank: 0x00200000 - 0xf8000000 (size: 0xf7e00000)
Total: 3845.41 ms
Starting kernel ...
[UNSUPP] Starting of Arbitrary Executable FiâŠtem Automount Point not supported.
[ OK ] Listening on Syslog Socket.
[ OK ] Reached target Swap.
[ OK ] Reached target Remote File Systems.
[ OK ] Created slice User and Session Slice.
[ OK ] Listening on udev Kernel Socket.
[ OK ] Created slice System Slice.
[ OK ] Reached target Slices.
[ OK ] Created slice system-serial\x2dgetty.slice.
Mounting Debug File System...
Mounting POSIX Message Queue File System...
[ OK ] Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Listening on udev Control Socket.
[ OK ] Listening on Journal Socket.
Starting Remount Root and Kernel File Systems...
Starting Restore / save the current clock...
Starting Load Kernel Modules...
Starting Journal Service...
Starting Create list of required stâŠce nodes for the current kernel...
[ OK ] Created slice system-getty.slice.
[ OK ] Started Forward Password Requests to Wall Directory Watch.
[ OK ] Reached target Encrypted Volumes.
[ OK ] Reached target Paths.
[ OK ] Mounted Debug File System.
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Started Remount Root and Kernel File Systems.
[ OK ] Started Load Kernel Modules.
[ OK ] Started Restore / save the current clock.
[ OK ] Started Create list of required staâŠvice nodes for the current kernel.
Starting Create Static Device Nodes in /dev...
Mounting FUSE Control File System...
Starting Apply Kernel Variables...
Mounting Configuration File System...
Starting Load/Save Random Seed...
Starting udev Coldplug all Devices...
[ OK ] Mounted Configuration File System.
[ OK ] Mounted FUSE Control File System.
[ OK ] Started Apply Kernel Variables.
[ OK ] Started Load/Save Random Seed.
[ OK ] Started Create Static Device Nodes in /dev.
Starting udev Kernel Device Manager...
[ OK ] Reached target Local File Systems (Pre).
[ OK ] Reached target Local File Systems.
Starting Raise network interfaces...
[ OK ] Started udev Kernel Device Manager.
[ OK ] Started Journal Service.
Starting Flush Journal to Persistent Storage...
[ OK ] Started Flush Journal to Persistent Storage.
Starting Create Volatile Files and Directories...
[ OK ] Started Create Volatile Files and Directories.
Starting Update UTMP about System Boot/Shutdown...
[ OK ] Reached target System Time Synchronized.
[ OK ] Started udev Coldplug all Devices.
[ OK ] Started Update UTMP about System Boot/Shutdown.
[ OK ] Reached target System Initialization.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[ OK ] Started Daily apt download activities.
[ OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
[ OK ] Started Regular background program processing daemon.
Starting System Logging Service...
[ OK ] Started Boot and Home Patition Mount Service.
Starting Avahi mDNS/DNS-SD Stack...
Starting Login Service...
Starting LSB: IPv4 DHCP client with IPv4LL support...
[ OK ] Started D-Bus System Message Bus.
[ OK ] Started Avahi mDNS/DNS-SD Stack.
Starting LSB: Starts and stops Wicd...
Starting Save/Restore Sound Card State...
[ OK ] Started Daily apt upgrade and clean activities.
[ OK ] Reached target Timers.
[ OK ] Started System Logging Service.
[ OK ] Started Save/Restore Sound Card State.
[ OK ] Found device /dev/ttyS2.
[ OK ] Started Raise network interfaces.
[ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[ OK ] Reached target Network.
Starting OpenBSD Secure Shell server...
[ OK ] Reached target Network is Online.
Starting LSB: Start NTP daemon...
Starting Permit User Sessions...
[ OK ] Reached target Sound Card.
[ OK ] Started Login Service.
Starting Load/Save RF Kill Switch Status...
[ OK ] Started Permit User Sessions.
[ OK ] Started Getty on tty1.
[ OK ] Started Serial Getty on ttyS2.
[ OK ] Reached target Login Prompts.
[ OK ] Started Load/Save RF Kill Switch Status.
[ OK ] Started LSB: IPv4 DHCP client with IPv4LL support.
[ OK ] Started LSB: Start NTP daemon.
[ OK ] Started OpenBSD Secure Shell server.
[ 2.708506] Internal error: : 96000210 [#1] SMP
[ 2.708910] Modules linked in: midgard_kbase dw_hdmi_i2s_audio phy_rockchip_pcie rockchip_saradc
[ 2.709708] CPU: 0 PID: 6 Comm: kworker/u12:0 Not tainted 4.4.180 #1
[ 2.710264] Hardware name: Pine64 RockPro64 (DT)
[ 2.710681] Workqueue: deferwq deferred_probe_work_func
[ 2.711143] task: ffffffc0f3244380 task.stack: ffffffc0f3278000
[ 2.711667] PC is at rockchip_pcie_rd_conf+0x164/0x1b4
[ 2.712119] LR is at rockchip_pcie_rd_conf+0x154/0x1b4
[ 2.712570] pc : [<ffffff80084a1220>] lr : [<ffffff80084a1210>] pstate: 600001c5
[ 2.713214] sp : ffffffc0f327b7e0
[ 2.713506] x29: ffffffc0f327b7e0 x28: 0000000000000000
[ 2.713979] x27: 0000000000000001 x26: 0000000000000000
[ 2.714452] x25: 0000000000000000 x24: ffffffc0f16dd800
[ 2.714923] x23: 0000000000000000 x22: 0000000000000004
[ 2.715395] x21: ffffffc0eed75a28 x20: ffffffc0f327b86c
[ 2.715867] x19: ffffff8014100000 x18: 0000000000000005
[ 2.716340] x17: 0000000000000000 x16: ffffff80081ae544
[ 2.716811] x15: 0000000000000000 x14: 000000000000000a
[ 2.717283] x13: ffffff80898f48e7 x12: 0000000000000030
[ 2.717755] x11: 0000000000000006 x10: ffffff80098f48ef
[ 2.718227] x9 : 0000000005f5e0ff x8 : 616373203a31303a
[ 2.718698] x7 : 3030303020737562 x6 : ffffff80098f4914
[ 2.719170] x5 : ffffff80084a10bc x4 : 0000000000000000
[ 2.719641] x3 : 000000000000000b x2 : 0000000000000800
[ 2.720113] x1 : ffffff8012c00008 x0 : ffffff8014000000
[ 2.720586]
[ 2.720586] PC: 0xffffff80084a11a0:
[ 2.721021] 11a0 54fffd01 39400042 12001c42 17fffff3 53140a73 12002ef7 53111000 2a170273
[ 2.721774] 11c0 2a025000 71007c5f 2a000273 540000e9 f94056a0 90007921 911e8c21 94048ad1
[ 2.722525] 11e0 b900029f 17ffffe0 510006c0 6a13001f 54fffa81 f9400b00 39436000 6b01001f
[ 2.723277] 1200 54000181 52800141 aa1503e0 97fffa39 710012df 54000121 f94002a0 8b130013
[ 2.724031] 1220 [ 2.724112] dwmmc_rockchip fe320000.dwmmc: Unexpected interrupt latency
[ 2.724763] b9400273 d5033d9f b9000293 17ffffd5 52800161 17fffff5 71000adf 540000c1
[ 2.725490] 1240 f94002a0 8b130013 79400273 12003e73 17fffff5 710006df 54fff741 f94002a0
[ 2.726242] 1260 8b130013 39400273 12001e73 17ffffee a9be7bfd 910003fd a90153f3 aa0003f4
[ 2.726993] 1280 aa0103f3 aa1e03e0 d503201f d2800002 52800000 38626a81 91000442 eb02027f
[ 2.727747]
[ 2.727747] LR: 0xffffff80084a1190:
[ 2.728182] 1190 79400042 12003c42 17fffff8 710006df 54fffd01 39400042 12001c42 17fffff3
[ 2.728933] 11b0 53140a73 12002ef7 53111000 2a170273 2a025000 71007c5f 2a000273 540000e9
[ 2.729685] 11d0 f94056a0 90007921 911e8c21 94048ad1 b900029f 17ffffe0 510006c0 6a13001f
[ 2.730438] 11f0 54fffa81 f9400b00 39436000 6b01001f 54000181 52800141 aa1503e0 97fffa39
[ 2.731189] 1210 710012df 54000121 f94002a0 8b130013 b9400273 d5033d9f b9000293 17ffffd5
[ 2.731941] 1230 52800161 17fffff5 71000adf 540000c1 f94002a0 8b130013 79400273 12003e73
[ 2.732692] 1250 17fffff5 710006df 54fff741 f94002a0 8b130013 39400273 12001e73 17ffffee
[ 2.733443] 1270 a9be7bfd 910003fd a90153f3 aa0003f4 aa0103f3 aa1e03e0 d503201f d2800002
[ 2.734197]
[ 2.734197] SP: 0xffffffc0f327b760:
[ 2.734632] b760 00000004 00000000 00000000 00000000 f16dd800 ffffffc0 00000000 00000000
[ 2.735384] b780 00000000 00000000 00000001 00000000 00000000 00000000 f327b7e0 ffffffc0
[ 2.736135] b7a0 084a1210 ffffff80 f327b7e0 ffffffc0 084a1220 ffffff80 600001c5 00000000
[ 2.736886] b7c0 00100000 00000000 f327b86c ffffffc0 ffffffff ffffffff 08f91428 ffffff80
[ 2.737638] b7e0 f327b820 ffffffc0 08480054 ffffff80 0975e080 ffffff80 f16dd800 ffffffc0
[ 2.738390] b800 00000000 00000000 00000140 00000000 f327b8ec ffffffc0 00000000 00000000
[ 2.739140] b820 f327b870 ffffffc0 0848210c ffffff80 f327b8ec ffffffc0 f16dd800 ffffffc0
[ 2.739892] b840 f16dd800 ffffffc0 00000000 00000000 0000ea60 00000000 00000000 00000000
[ 2.740644]
[ 2.740644] X0: 0xffffff8013ffff80:
[ 2.741079] ff80 ******** ******** ******** ******** ******** ******** ******** ********
[ 2.741838] ffa0 ******** ******** ******** ******** ******** ******** ******** ********
[ 2.742589] ffc0 ******** ******** ******** ******** ******** ******** ******** ********
[ 2.743342] ffe0 ******** ******** ******** ******** ******** ******** ******** ********
[ 2.744094] 0000
[ 2.744252] Synchronous External Abort: synchronous external abort (0x96000210) at 0xffffff8014000000
[ 4.281221] rk3x-i2c ff3c0000.i2c: timeout, ipd: 0x10, state: 1
[ 4.281767] rk808-rtc rk808-rtc: Failed to update RTC control: -110
[ 5.282214] rk3x-i2c ff3c0000.i2c: timeout, ipd: 0x10, state: 1
[ 5.282756] rk808-rtc rk808-rtc: Failed to update bits rtc_ctrl: -110
[ 6.283116] rk3x-i2c ff3c0000.i2c: timeout, ipd: 0x10, state: 1
[ 6.283643] rk808-rtc rk808-rtc: Failed to update RTC control: -110
[ 7.284114] rk3x-i2c ff3c0000.i2c: timeout, ipd: 0x10, state: 1
[ 7.284640] rk808-rtc rk808-rtc: Failed to update bits rtc_ctrl: -110
[ 8.285118] rk3x-i2c ff3c0000.i2c: timeout, ipd: 0x10, state: 1
[ 8.285646] rk808-rtc rk808-rtc: Failed to update RTC control: -110
[ 9.287118] rk3x-i2c ff3c0000.i2c: timeout, ipd: 0x10, state: 1
[ 9.287648] rk808-rtc rk808-rtc: Failed to update bits rtc_ctrl: -110
[ 9.745077] BUG: spinlock lockup suspected on CPU#0, kworker/u12:0/6
[ 9.745641] lock: 0xffffff80096e0018, .magic: dead4ead, .owner: kworker/u12:0/6, .owner_cpu: 0
[ 9.746402] CPU: 0 PID: 6 Comm: kworker/u12:0 Not tainted 4.4.180 #1
[ 9.746956] Hardware name: Pine64 RockPro64 (DT)
[ 9.747368] Workqueue: deferwq deferred_probe_work_func
[ 9.747830] Call trace:
[ 9.748054] [<ffffff80080881a4>] dump_backtrace+0x0/0x220
[ 9.748530] [<ffffff80080883e8>] show_stack+0x24/0x30
[ 9.748976] [<ffffff80084245ec>] dump_stack+0x98/0xc0
[ 9.749423] [<ffffff80080e6c24>] spin_dump+0x84/0xa4
[ 9.749860] [<ffffff80080e6dc0>] do_raw_spin_lock+0xdc/0x164
[ 9.750361] [<ffffff8008f91428>] _raw_spin_lock_irqsave+0x28/0x38
[ 9.750895] [<ffffff8008088428>] die+0x34/0x1b4
[ 9.751294] [<ffffff800808869c>] arm64_notify_die+0x6c/0x70
[ 9.751785] [<ffffff8008093324>] do_sea+0x80/0x94
[ 9.752199] [<ffffff8008080b04>] do_mem_abort+0x50/0xa8
[ 9.752658] Exception stack(0xffffffc0f327b240 to 0xffffffc0f327b370)
[ 9.753223] b240: ffffffc0f3244380 0000008000000000 ffffffc0f327b410 ffffff8008422884
[ 9.753907] b260: 0000000000000000 0000000000000000 0000000000000005 0000000000000000
[ 9.754592] b280: ffffff80098f5148 0000000000000000 ffffffc0f327b2b0 ffffff80080eda14
[ 9.755275] b2a0: 0000000000000005 0000000000000000 ffffffc0f327b350 ffffff80080edb74
[ 9.755960] b2c0: ffffffc0f327b3d0 ffffff800936ca08 ffffff800936ca08 ffffff80093c7fee
[ 9.756644] b2e0: ffffffc0f327b49c ffffff8014000000 0000000000000004 00000040ee841000
[ 9.757329] b300: 0000000000000002 ffffffc0f327b4a0 ffffffc0f327b49c 00000000ffffffff
[ 9.758013] b320: ffffff800990fd7f 0000000005f5e0ff ffffff80098f48ef 0000000000000006
[ 9.758697] b340: 0000000000000030 ffffff80898f48e7 000000000000000a 0000000000000000
[ 9.759381] b360: ffffff80081ae544 0000000000000000
[ 9.759811] [<ffffff80080825cc>] el1_da+0x24/0x84
[ 9.760225] [<ffffff8008084924>] show_data.constprop.3+0xa4/0xf8
[ 9.760753] [<ffffff8008084cac>] __show_regs+0x14c/0x198
[ 9.761219] [<ffffff80080884ac>] die+0xb8/0x1b4
[ 9.761618] [<ffffff800808869c>] arm64_notify_die+0x6c/0x70
[ 9.762106] [<ffffff8008093324>] do_sea+0x80/0x94
[ 9.762519] [<ffffff8008080b04>] do_mem_abort+0x50/0xa8
[ 9.762977] Exception stack(0xffffffc0f327b610 to 0xffffffc0f327b740)
[ 9.763541] b600: ffffff8014100000 0000008000000000
[ 9.764225] b620: ffffffc0f327b7e0 ffffff80084a1220 ffffffc0f16dd920 000000000000006e
[ 9.764910] b640: ffffffc0f327b7f0 0000000000000007 ffffff80093b3fe6 ffffff80093c1b86
[ 9.765594] b660: ffffffc0f327b752 0000000000000000 ffffffc0f327b680 ffffff8009692000
[ 9.766279] b680: 0000000000000140 00000000093c1b86 ffffffc0f327b860 ffffffc0f327b860
[ 9.766964] b6a0: ffffffc0f327b830 00000000ffffffd8 ffffff8014000000 ffffff8012c00008
[ 9.767648] b6c0: 0000000000000800 000000000000000b 0000000000000000 ffffff80084a10bc
[ 9.768333] b6e0: ffffff80098f4914 3030303020737562 616373203a31303a 0000000005f5e0ff
[ 9.769018] b700: ffffff80098f48ef 0000000000000006 0000000000000030 ffffff80898f48e7
[ 9.769702] b720: 000000000000000a 0000000000000000 ffffff80081ae544 0000000000000000
[ 9.770386] [<ffffff80080825cc>] el1_da+0x24/0x84
[ 9.770802] [<ffffff8008480054>] pci_bus_read_config_dword+0x6c/0xa4
[ 9.771360] [<ffffff800848210c>] pci_bus_read_dev_vendor_id+0x40/0xe4
[ 9.771924] [<ffffff8008483b3c>] pci_scan_single_device+0x60/0xc4
[ 9.772459] [<ffffff8008483c1c>] pci_scan_slot+0x7c/0xec
[ 9.772925] [<ffffff80084849dc>] pci_scan_child_bus+0x5c/0x164
[ 9.773438] [<ffffff8008484950>] pci_scan_bridge+0x4ac/0x4dc
[ 9.773934] [<ffffff8008484ad8>] pci_scan_child_bus+0x158/0x164
[ 9.774455] [<ffffff8008484cdc>] pci_scan_root_bus_msi+0x9c/0xe4
[ 9.774982] [<ffffff8008484d70>] pci_scan_root_bus+0x4c/0x60
[ 9.775479] [<ffffff80084a0130>] rockchip_pcie_really_probe+0x254/0x304
[ 9.776058] [<ffffff80084a0d50>] rockchip_pcie_probe+0xb70/0xcb4
[ 9.776587] [<ffffff80085caa24>] platform_drv_probe+0x5c/0xb0
[ 9.777092] [<ffffff80085c89bc>] driver_probe_device+0x2ac/0x3e8
[ 9.777619] [<ffffff80085c8c70>] __device_attach_driver+0x68/0xa4
[ 9.778154] [<ffffff80085c6874>] bus_for_each_drv+0x90/0xa0
[ 9.778642] [<ffffff80085c85f8>] __device_attach+0xac/0x128
[ 9.779132] [<ffffff80085c8cd0>] device_initial_probe+0x24/0x30
[ 9.779651] [<ffffff80085c794c>] bus_probe_device+0x38/0x98
[ 9.780140] [<ffffff80085c7f34>] deferred_probe_work_func+0xb4/0xc8
[ 9.780691] [<ffffff80080b2350>] process_one_work+0x224/0x368
[ 9.781196] [<ffffff80080b3438>] worker_thread+0x2d0/0x38c
[ 9.781679] [<ffffff80080b82ec>] kthread+0xe0/0xf0
[ 9.782101] [<ffffff8008082ef0>] ret_from_fork+0x10/0x20
[ 24.157103] Watchdog detected hard LOCKUP on cpu 0
[ 24.157517] ------------[ cut here ]------------
[ 24.157939] WARNING: at kernel/watchdog.c:352
[ 24.158320] Modules linked in: midgard_kbase dw_hdmi_i2s_audio phy_rockchip_pcie rockchip_saradc
[ 24.159103]
[ 24.159240] CPU: 5 PID: 0 Comm: swapper/5 Not tainted 4.4.180 #1
[ 24.159763] Hardware name: Pine64 RockPro64 (DT)
[ 24.160166] task: ffffffc0f328c380 task.stack: ffffffc0f32a8000
[ 24.160690] PC is at watchdog_timer_fn+0x190/0x2e8
[ 24.161110] LR is at watchdog_timer_fn+0x190/0x2e8
[ 24.161529] pc : [<ffffff800812c738>] lr : [<ffffff800812c738>] pstate: 600001c5
[ 24.162172] sp : ffffffc0f7f3fdf0
[ 24.162462] x29: ffffffc0f7f3fdf0 x28: 0000000000000000
[ 24.162932] x27: ffffff80096d7720 x26: ffffff8009698260
[ 24.163400] x25: ffffffc0f7f42278 x24: ffffffc0f32abda0
[ 24.163869] x23: 0000000000000000 x22: 0000000000000012
[ 24.164338] x21: ffffff80096d6000 x20: ffffff80096982d8
[ 24.164807] x19: ffffff8009698000 x18: 0000000000000005
[ 24.165276] x17: 0000000000000000 x16: ffffff80081ede5c
[ 24.165745] x15: 0000000000000000 x14: 000000000000000a
[ 24.166215] x13: ffffff80898f48e7 x12: 0000000000000030
[ 24.166684] x11: 0000000000000006 x10: ffffff80098f48ef
[ 24.167153] x9 : 0000000005f5e0ff x8 : 4c20647261682064
[ 24.167621] x7 : 6574636574656420 x6 : ffffff80098f491d
[ 24.168090] x5 : 00000000fffffffe x4 : 0000000000000002
[ 24.168559] x3 : 00000040ee8aa000 x2 : 00000040ee8aa000
[ 24.169028] x1 : 0000000000000005 x0 : 0000000000000026
[ 24.169497]
[ 24.169497] PC: 0xffffff800812c6b8:
[ 24.169930] c6b8 91022694 d538d080 38746801 34000041 3834681f 97ffff7a a94153f3 52800020
[ 24.170674] c6d8 a9425bf5 a94363f7 a9446bf9 a94573fb a8c77bfd d65f03c0 91020282 f87a6860
[ 24.171424] c6f8 f8626865 91022294 eb05001f 54000101 38746860 35fffb80 b9403082 90009260
[ 24.172171] c718 91262c00 340000c2 9400d200 f8226860 f87c7b60 3834681f 17ffffd3 9400d28a
[ 24.172917] c738 d4210000 f87c7b60 52800021 38346801 17ffffcd 97fe7745 f9438aa1 36080941
[ 24.173664] c758 b9401341 910003e2 340008e1 531f7821 d35efc00 8b21c2c1 cb000021 b6f80841
[ 24.174410] c778 6b160016 54000800 91022a99 d538d080 38606b21 34000101 91024294 f8746802
[ 24.175160] c798 d5384101 eb01005f 54fff980 3839681f 17ffffc9 34000157 f000c161 52800000
[ 24.175905]
[ 24.175905] LR: 0xffffff800812c6b8:
[ 24.176338] c6b8 91022694 d538d080 38746801 34000041 3834681f 97ffff7a a94153f3 52800020
[ 24.177083] c6d8 a9425bf5 a94363f7 a9446bf9 a94573fb a8c77bfd d65f03c0 91020282 f87a6860
[ 24.177832] c6f8 f8626865 91022294 eb05001f 54000101 38746860 35fffb80 b9403082 90009260
[ 24.178577] c718 91262c00 340000c2 9400d200 f8226860 f87c7b60 3834681f 17ffffd3 9400d28a
[ 24.179322] c738 d4210000 f87c7b60 52800021 38346801 17ffffcd 97fe7745 f9438aa1 36080941
[ 24.180069] c758 b9401341 910003e2 340008e1 531f7821 d35efc00 8b21c2c1 cb000021 b6f80841
[ 24.180815] c778 6b160016 54000800 91022a99 d538d080 38606b21 34000101 91024294 f8746802
[ 24.181561] c798 d5384101 eb01005f 54fff980 3839681f 17ffffc9 34000157 f000c161 52800000
[ 24.182305]
[ 24.182305] SP: 0xffffffc0f7f3fd70:
[ 24.182738] fd70 00000012 00000000 00000000 00000000 f32abda0 ffffffc0 f7f42278 ffffffc0
[ 24.183484] fd90 09698260 ffffff80 096d7720 ffffff80 00000000 00000000 f7f3fdf0 ffffffc0
[ 24.184229] fdb0 0812c738 ffffff80 f7f3fdf0 ffffffc0 0812c738 ffffff80 600001c5 00000000
[ 24.184973] fdd0 096d6710 ffffff80 00000000 00000000 00000000 00000080 f2c00028 ffffffc0
[ 24.185719] fdf0 f7f3fe60 ffffffc0 08103104 ffffff80 f7f42278 ffffffc0 f7f41c00 ffffffc0
[ 24.186467] fe10 9a444065 00000005 f7f41c80 ffffffc0 09692000 ffffff80 00000003 00000000
[ 24.187212] fe30 098a07b8 ffffff80 9a444065 00000005 0812c5a8 ffffff80 f328c380 ffffffc0
[ 24.187957] fe50 f7f42278 ffffffc0 096d6710 ffffff80 f7f3fed0 ffffffc0 081036e8 ffffff80
[ 24.188705]
[ 24.188705] X6: 0xffffff80098f489d:
[ 24.189137] 489c 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.189884] 48bc 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.190632] 48dc 00000000 00000001 00000000 30303020 32303330 33363030 34205d32 20636438
[ 24.191377] 48fc 312e3432 30373838 58205d35 30203a36 66666678 38666666 38393030 39383466
[ 24.192123] 491c 300a3a64 32313830 38333763 70205d3e 74617473 36203a65 30303030 0a356331
[ 24.192870] 493c 30303030 5f72650a 3a757063 300a3020 30303030 6c6c750a 625b2029 30207375
[ 24.193612] 495c 66312d30 690a295d 0a216576 73203b29 65636375 69207373 6974696e 7020676e
[ 24.194360] 497c 7265776f 646f6d5f 735f6c65 6c706d69 6e0a2e65 79617779 504d0a2e 4c422b20
[ 24.195105] 499c 2044494b 464c452b 4c495455 4b2b2053 20444f4d 4e44492b 47200a29 5b0a2942
[ 24.195853]
[ 24.195853] X10: 0xffffff80098f486f:
[ 24.196292] 486c 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.197038] 488c 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.197782] 48ac 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.198527] 48cc 00000000 00000000 00000000 00000000 00000000 00000001 00000000 30303020
[ 24.199273] 48ec 312e3432 37323932 34205d33 20636538 312e3432 35383539 58205d33 203a3031
[ 24.200022] 490c 66667830 66666666 39303038 38346638 0a3a6636 32313830 38333763 70205d3e
[ 24.200769] 492c 74617473 36203a65 30303030 0a356331 30303030 5f72650a 3a757063 300a3020
[ 24.201512] 494c 30303030 6c6c750a 625b2029 30207375 66312d30 690a295d 0a216576 73203b29
[ 24.202258] 496c 65636375 69207373 6974696e 7020676e 7265776f 646f6d5f 735f6c65 6c706d69
[ 24.203009]
[ 24.203009] X13: 0xffffff80898f4867:
[ 24.203449] 4864 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.204198] 4884 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.204941] 48a4 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.205685] 48c4 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.206429] 48e4 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.207172] 4904 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.207915] 4924 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.208657] 4944 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.209398] 4964 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.210145]
[ 24.210145] X16: 0xffffff80081edddc:
[ 24.210584] dddc 34fff777 91020260 97fffc1f 17ffffb8 f9403720 b4fffa40 aa1903e0 94073e42
[ 24.211329] ddfc 17ffffcf 52800017 17fffff4 12800034 17ffffaf 12800014 17ffffb3 128002b4
[ 24.212072] de1c 17ffffb1 12800114 17ffffb3 12800114 17fffe82 71000aff 54fff420 71000eff
[ 24.212819] de3c 54fff640 12800214 710006ff 54ffef40 17fffea8 b5fff3f6 f94057a0 17fffe6d
[ 24.213565] de5c a9b57bfd 910003fd a90153f3 a9025bf5 a90363f7 a9046bf9 a90573fb aa0103fa
[ 24.214313] de7c aa0203f8 aa0003f4 aa0303f3 aa1e03e0 d503201f 51000701 321f67e0 6b00003f
[ 24.215058] de9c 54001708 d5384101 937c7f00 f9400422 aa1a03e1 ab000021 fa423022 9a9f87e3
[ 24.215807] debc b4001643 2a1403e0 97ff6a02 f90037a0 f27ef415 540015e0 f94016a1 f0006e60
[ 24.216555]
[ 24.216555] X19: 0xffffff8009697f80:
[ 24.216995] 7f80 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.217739] 7fa0 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.218485] 7fc0 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.219229] 7fe0 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.219971] 8000 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.220714] 8020 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.221461] 8040 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.222206] 8060 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.222950]
[ 24.222950] X20: 0xffffff8009698258:
[ 24.223389] 8258 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.224135] 8278 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.224879] 8298 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.225622] 82b8 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.226366] 82d8 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.227112] 82f8 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.227859] 8318 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.228603] 8338 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.229346]
[ 24.229346] X21: 0xffffff80096d5f80:
[ 24.229786] 5f80 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.230531] 5fa0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.231276] 5fc0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.232024] 5fe0 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.232768] 6000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.233513] 6020 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.234258] 6040 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.235005] 6060 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 24.235753]
[ 24.235753] X24: 0xffffffc0f32abd20:
[ 24.236193] bd20 00000000 00000000 f328c380 ffffffc0 000001c0 00000000 08c6cdb0 ffffff80
[ 24.236940] bd40 00000002 00000000 080913c4 ffffff80 f32abd60 ffffffc0 080914b8 ffffff80
[ 24.237685] bd60 f32abe70 ffffffc0 08c6d42c ffffff80 f32abdb0 ffffffc0 08cee258 ffffff80
[ 24.238431] bd80 000052a3 00000000 00000005 00000000 ee8aa000 00000040 00400800 00000000
[ 24.239180] bda0 f7f46180 ffffffc0 ee8aa000 00000040 f7f46180 ffffffc0 f32abeb0 ffffffc0
[ 24.239927] bdc0 ffffffff 00ffffff 289c76bd 00000000 0000b9e6 00000000 00000000 00000000
[ 24.240673] bde0 f32abf50 ffffffc0 00000000 00000000 000009a0 00000000 00000474 00000000
[ 24.241421] be00 0000011d 00000000 00000001 00000003 00000004 00000000 00000000 00000000
[ 24.242168]
[ 24.242168] X25: 0xffffffc0f7f421f8:
[ 24.242608] 21f8 ffffffff 00000000 ffffffff ffffffff 00000001 00000000 f7f42210 ffffffc0
[ 24.243352] 2218 f7f42210 ffffffc0 f7f42220 ffffffc0 f7f42220 ffffffc0 0812b194 ffffff80
[ 24.244098] 2238 f324bcf8 ffffffc0 f324bc50 ffffffc0 00020002 00000000 00000000 00000000
[ 24.244845] 2258 00000001 00000000 00000006 00000000 00000005 00000000 f3326c00 ffffffc0
[ 24.245588] 2278 f7f42278 ffffffc0 f7f420e8 ffffffc0 00000000 00000000 9a443dc0 00000005
[ 24.246335] 2298 9a443dc0 00000005 0812c5a8 ffffff80 f7f41c80 ffffffc0 00000000 0000001f
[ 24.247081] 22b8 0812c57c ffffff80 63746177 676f6468 0000352f 00000000 00000006 00000000
[ 24.247829] 22d8 00000000 00000000 00000000 00000000 00000000 00000000 00000001 00000000
[ 24.248573]
[ 24.248573] X26: 0xffffff80096981e0:
[ 24.249013] 81e0 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.249757] 8200 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.250502] 8220 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.251243] 8240 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.251988] 8260 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.252730] 8280 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.253473] 82a0 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.254216] 82c0 ******** ******** ******** ******** ******** ******** ******** ********
[ 24.254960]
[ 24.254960] X27: 0xffffff80096d76a0:
[ 24.255400] 76a0 00000001 00000000 00000001 00000000 000003e8 00000000 f7f51500 ffffffc0
[ 24.256148] 76c0 00000015 00000000 f7f514c0 ffffffc0 00000001 00000006 00000060 00000000
[ 24.256895] 76e0 00015000 00001000 00000001 00000000 f7f51540 ffffffc0 f7f51580 ffffffc0
[ 24.257640] 7700 00000000 00000005 00000010 00000000 f7f513c0 ffffffc0 f7ed3000 ffffffc0
[ 24.258386] 7720 ee841000 00000040 ee856000 00000040 ee86b000 00000040 ee880000 00000040
[ 24.259134] 7740 ee895000 00000040 ee8aa000 00000040 00000000 00000000 00000000 00000000
[ 24.259879] 7760 00000002 00000000 00001af0 00000000 00010000 00000000 000f7fff 00000000
[ 24.260625] 7780 0001e290 00000000 00002000 00000000 00000000 0000fffa 00000000 00000000
[ 24.261372]
[ 24.261372] X29: 0xffffffc0f7f3fd70:
[ 24.261813] fd70 00000012 00000000 00000000 00000000 f32abda0 ffffffc0 f7f42278 ffffffc0
[ 24.262561] fd90 09698260 ffffff80 096d7720 ffffff80 00000000 00000000 f7f3fdf0 ffffffc0
[ 24.263307] fdb0 0812c738 ffffff80 f7f3fdf0 ffffffc0 0812c738 ffffff80 600001c5 00000000
[ 24.264054] fdd0 096d6710 ffffff80 00000000 00000000 00000000 00000080 f2c00028 ffffffc0
[ 24.264799] fdf0 f7f3fe60 ffffffc0 08103104 ffffff80 f7f42278 ffffffc0 f7f41c00 ffffffc0
[ 24.265546] fe10 9a444065 00000005 f7f41c80 ffffffc0 09692000 ffffff80 00000003 00000000
[ 24.266293] fe30 098a07b8 ffffff80 9a444065 00000005 0812c5a8 ffffff80 f328c380 ffffffc0
[ 24.267038] fe50 f7f42278 ffffffc0 096d6710 ffffff80 f7f3fed0 ffffffc0 081036e8 ffffff80
[ 24.267784]
[ 24.267916] ---[ end trace 279e8ad1d901fb9c ]---
[ 24.268320] Call trace:
[ 24.268536] Exception stack(0xffffffc0f7f3fc10 to 0xffffffc0f7f3fd40)
[ 24.269098] fc00: ffffff8009698000 0000008000000000
[ 24.269780] fc20: ffffffc0f7f3fdf0 ffffff800812c738 00000000600001c5 ffffff80080eda14
[ 24.270461] fc40: 0000000000000026 0000000000000000 ffffffc0f7f3fcf0 ffffff80080edb74
[ 24.271143] fc60: ffffffc0f7f3fd70 ffffff800937898b ffffff80096d6000 0000000000000012
[ 24.271824] fc80: 0000000000000000 ffffffc0f32abda0 ffffffc0f7f42278 ffffff8009698260
[ 24.272506] fca0: ffffff80096d7720 0000000000000000 0000000000000001 ffffff8009692000
[ 24.273187] fcc0: 0000000000000026 0000000000000005 00000040ee8aa000 00000040ee8aa000
[ 24.273869] fce0: 0000000000000002 00000000fffffffe ffffff80098f491d 6574636574656420
[ 24.274550] fd00: 4c20647261682064 0000000005f5e0ff ffffff80098f48ef 0000000000000006
[ 24.275231] fd20: 0000000000000030 ffffff80898f48e7 000000000000000a 0000000000000000
[ 24.275914] [<ffffff800812c738>] watchdog_timer_fn+0x190/0x2e8
[ 24.276424] [<ffffff8008103104>] __hrtimer_run_queues+0x1bc/0x284
[ 24.276954] [<ffffff80081036e8>] hrtimer_interrupt+0xac/0x1bc
[ 24.277458] [<ffffff8008c6def8>] arch_timer_handler_phys+0x38/0x50
[ 24.277999] [<ffffff80080f3130>] handle_percpu_devid_irq+0xe8/0x178
[ 24.278545] [<ffffff80080ee7e0>] generic_handle_irq+0x2c/0x44
[ 24.279047] [<ffffff80080eeb74>] __handle_domain_irq+0xb4/0xb8
[ 24.279557] [<ffffff8008080e74>] gic_handle_irq+0xc4/0x17c
[ 24.280035] Exception stack(0xffffffc0f32abda0 to 0xffffffc0f32abed0)
[ 24.280597] bda0: ffffffc0f7f46180 00000040ee8aa000 ffffffc0f7f46180 ffffffc0f32abeb0
[ 24.281279] bdc0: 00ffffffffffffff 00000000289c76bd 000000000000b9e6 0000000000000000
[ 24.281960] bde0: ffffffc0f32abf50 0000000000000000 00000000000009a0 0000000000000474
[ 24.282640] be00: 000000000000011d 0000000300000001 0000000000000004 0000000000000000
[ 24.283322] be20: ffffff80081ede5c 0000000000000000 0000000000000000 000000059a443e1d
[ 24.284003] be40: 0000000000000000 ffffffc0f1f54c00 0000000000000000 ffffff80098a0ce0
[ 24.284683] be60: 0000000000000000 000000059a3505a1 ffffff800983def0 0000000001193244
[ 24.285365] be80: 0000000000000000 ffffffc0f32abed0 ffffff8008c43ccc ffffffc0f32abed0
[ 24.286046] bea0: ffffff8008c43d00 0000000060000145 ffffffc0f32abed0 ffffff8008c43ccc
[ 24.286727] bec0: ffffffffffffffff 0000000000000000
[ 24.287153] [<ffffff80080827b4>] el1_irq+0xb4/0x140
[ 24.287582] [<ffffff8008c43d00>] cpuidle_enter_state+0x1fc/0x254
[ 24.288106] [<ffffff8008c43dcc>] cpuidle_enter+0x34/0x44
[ 24.288570] [<ffffff80080e05b8>] call_cpuidle+0x70/0x78
[ 24.289025] [<ffffff80080e085c>] cpu_startup_entry+0x29c/0x2ac
[ 24.289535] [<ffffff800808c3f8>] secondary_start_kernel+0x194/0x1c0
[ 24.290081] [<0000000001193188>] 0x1193188
|
|
|
|
| Could the Pinebook work as a file server? |
|
Posted by: zer0sig - 10-22-2019, 02:36 PM - Forum: General Discussion on Pinebook
- No Replies
|
 |
I know it's possible as I've set up all manner of servers in Linux - but my question is about whether it would actually be useful. I find the Pinebook not a lot of fun to work with, with display goofiness and a keyboard that doesn't record presses unless I hammer on the keys, but I really like ARM and seem to recall hearing that it had a USB3 port.
Has anyone tried to use it as a standalone fileserver using the USB port? have they been able to get reasonable speeds? I have a PINE64A+ 2GB I use for DNS but it has only USB 2.0 which would be pretty pokey for transferring files to an external drive.
I'm thinking maybe I'd have better luck with the Pinebook which I find to be stable and basically functional, just not a very fun notebook to play with. Will probably get the Pro later but would like to actually do something with the one I have now and using it as a home server of some kind would work for me.
Any input is appreciated.
|
|
|
|
|