Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 30,105
» Latest member: kiwigoldfish
» Forum threads: 16,361
» Forum posts: 117,529

Full Statistics

Latest Threads
Pinephone software
Forum: General Discussion on PinePhone
Last Post: Csanderson0313
7 hours ago
» Replies: 0
» Views: 34
PineNote v1.2 - Charges N...
Forum: General Discussion on Pinebook Pro
Last Post: ttsp
07-02-2026, 02:52 AM
» Replies: 0
» Views: 102
How to change the PineNot...
Forum: General Discussion on PineNote
Last Post: cameronharring
07-01-2026, 12:22 PM
» Replies: 0
» Views: 61
PinePhone Pro disable Vol...
Forum: PinePhone Pro Hardware
Last Post: FR_IV
07-01-2026, 10:53 AM
» Replies: 1
» Views: 1,541
Star64/Starpro64 kernel b...
Forum: General
Last Post: tgbgreen
06-30-2026, 12:17 PM
» Replies: 1
» Views: 2,156
Manjaro affected by Arch ...
Forum: General
Last Post: tantamount
06-28-2026, 10:45 AM
» Replies: 0
» Views: 233
Fix Bricked SPI Flash, Pi...
Forum: PinePhone Pro Hardware
Last Post: FR_IV
06-27-2026, 05:00 PM
» Replies: 0
» Views: 156
irradium (based on crux l...
Forum: Linux on RockPro64
Last Post: mara
06-27-2026, 04:09 PM
» Replies: 12
» Views: 19,633
irradium (based on crux l...
Forum: Linux on Rock64
Last Post: mara
06-27-2026, 02:43 PM
» Replies: 13
» Views: 18,819
Android Gaming Image
Forum: Game Station Emulation
Last Post: Jacobgilbert
06-26-2026, 07:06 AM
» Replies: 52
» Views: 111,236

 
  Tutorial How to write a image in the eMMc card without USB adaptor or serial cable
Posted by: gedas07 - 08-28-2018, 05:18 PM - Forum: Linux on Rock64 - Replies (2)

Well I do not know if it's already written in some post,
But I found a way to record an image on the Emmc without the adapter or the serial cable


1.- Download any minimal image for SD and record it in SD (tested with debian 0.78 minimal)
2.- You start the Rock64 with the SD card put the eMMc in place and the jumper so you do not activate it
3.- Once the minimum image has been removed, remove the jumper
4.- cd / usr / local / sbin
5.- sudo rock64_reset_emmc.sh
6.- sudo nano sd2emmc.sh
7.- curl -L https://github.com/ayufan-rock64/linux-b...m64.img.xz | unxz -c> / dev / mmcblk0
8.- You can put the image you want after download another example
curl -L https://github.com/ayufan-rock64/linux-b...m64.img.xz | unxz -c> / dev / mmcblk0
another way from a personal pc
curl -L -u Domain \ user: passwd smb: //192.168.1.9/download/xenialokrock64.img.xz | unxz -c> / dev / mmcblk0
9.- CTRL +O enter  CTRL +X
10.- sudo chmod 0754 sd2emmc.sh
11.- sudo ./sd2emmc.sh
12.- When the prompt returns to write,
sudo shutdown -h now,
13.- When this rock64 is turned off, you take the SD out of its site and reboot again without SD
14.- The image will start from the eMMC and you will have your image recorded in the SD

I hope it helps you all and if you see any error or problem you tell me


  How to customize DSI RGB format
Posted by: r.tanaka - 08-28-2018, 04:40 AM - Forum: LCD and Touch Panel - No Replies

Hi

I would like to change the DSI format to RGB565.

Therefore, fix the following setting values from DTS.

[sun50i-a64-pine64-plus.dts]

Code:
2182             lcd_dsi_if = <0x2>;
2183             lcd_dsi_lane = <0x4>;
2184             lcd_dsi_format = <0x3>;
2185             lcd_dsi_eotp = <0x0>;
2186             lcd_dsi_vc = <0x0>;
2187             lcd_dsi_te = <0x0>;
"lcd_dsi_format" has been changed from 0 to 3


But, the RGB format of DSI was not changed.
I confirmed with the fbset command.
Code:
pine64@pine64:~$ fbset -i

mode "1024x600-80"
   # D: 55.002 MHz, H: 97.178 kHz, V: 79.981 Hz
   geometry 1024 600 1024 1200 32
   timings 18181 16 -478 4 610 4 1
   rgba 8/16,8/8,8/0,8/24
endmode

Frame buffer device information:
   Name        :
   Address     : 0x57354000
   Size        : 4915200
   Type        : PACKED PIXELS
   Visual      : TRUECOLOR
   XPanStep    : 1
   YPanStep    : 1
   YWrapStep   : 0
   LineLength  : 4096
   Accelerator : No
pine64@pine64:~$



Is there a mistake in how to change the DSI RGB format?

Also, I tryed change to RGB format with reference to the following page.
http://linux-sunxi.org/Fex_Guide#FEX_Description

[sun50i-a64-pine64-plus.dts]
Code:
2136         disp@01000000 {
2137             compatible = "allwinner,sun50i-disp";
2138             reg = <0x0 0x1000000 0x0 0x300000 0x0 0x1c0c000 0x0 0x7fc 0x0 0x1c0d000 0x0 0x7fc 0x0 0x1ca0000 0x0 0x10fc>;
2139             interrupts = <0x0 0x56 0x104 0x0 0x57 0x104 0x0 0x59 0x104>;
2140             clocks = <0x6a 0x6b 0x6c 0x6d 0x6e>;
2141             status = "okay";
2142             device_type = "disp";
2143             disp_init_enable = <0x1>;
2144             disp_mode = <0x0>;
2145             screen0_output_type = <0x3>;
2146             screen0_output_mode = <0x5>;
2147             screen1_output_type = <0x1>;
2148             screen1_output_mode = <0x5>;
2149             fb0_format = <0x5>;
2150             fb0_width = <0x0>;
2151             fb0_height = <0x0>;
2152             fb1_format = <0x0>;
2153             fb1_width = <0x0>;
2154             fb1_height = <0x0>;
2155         };
"fb0_format" has been changed from 0 to 5


But, the result did not change.


  adb connection failed
Posted by: jylee650 - 08-28-2018, 03:14 AM - Forum: Android on RockPro64 - Replies (4)

I can not connect adb using USB-C or TCP.

- Using USB type C to C
    no device

- Using tcp(ping is succeed)
    adb connect 192.168.1.134
    unable to connect to 192.168.1.134:5555: Connection refused

If someone succeeds, please help me.

Thank you!


  Working desktop on Debian ?
Posted by: Chris66 - 08-27-2018, 11:51 PM - Forum: General Discussion on ROCK64 - Replies (5)

Can anyone prove or have seen evidence of;
1. well-functioning desktop can actually be installed and run on Debian?
2. that Firefox works 100% correctly on Rock64, without crashes?
3. that Firejail can run on Rock64?


  3D model for Playbox enclosure
Posted by: Firesped - 08-27-2018, 04:52 PM - Forum: General Discussion on ROCKPRO64 - Replies (3)

I want to develop a mount for the stereo cameras in the back plate for the Playbox Enclosure. I am wonder if you are willing to share that 3d model for it. when I can modify it and send it back to you.

I have professional license for Sketchup pro and 3D printers to test the design as well.


  How to push up to maximum frequency.
Posted by: jzhang18 - 08-27-2018, 01:43 PM - Forum: Linux on RockPro64 - Replies (3)

Hostname: rockpro64
CPU Frequency:
Core0: 1416Mhz
Core1: 1416Mhz
Core2: 1416Mhz
Core3: 1416Mhz
Core4: 1800Mhz
Core5: 1800Mhz
CPU Governor: performance
Temperature: 40  C

I am wondering how I can push 4 LITTLE cores to 1.5Ghz and 2 big cores to 2.0Ghz.


For Banana PI M3, there is a file called sys_config.fex, has content like:
B_LV3_freq = 1608000000
B_LV3_volt = 920

B_LV4_freq = 1200000000
B_LV4_volt = 840

B_LV5_freq = 0
B_LV5_volt = 840

B_LV6_freq = 0
B_LV6_volt = 840

B_LV7_freq = 0
B_LV7_volt = 840

B_LV8_freq = 0
B_LV8_volt = 840

[vf_table1]

I am thinking if there is similar file in rockpro64, so I can tune it by myself to unlock 2.0Ghz/1.5Ghz

BTW - I have a good power supply 12V/6A, full height heat sink, and a good cooling fan running on top of the sink. want to unlock the potential of RK3399 CPU


Music ROCK64 Stereo Audio DAC Add-on
Posted by: FancyPBJ - 08-27-2018, 12:18 PM - Forum: RockPro64 Hardware and Accessories - Replies (1)

Is this add-on board available for the ROCKPro64 or just the ROCK64?


  HELP I want install a desktop but I don't Know how can I do
Posted by: gedas07 - 08-27-2018, 09:47 AM - Forum: Linux on Rock64 - Replies (11)

Hello
I'm very newbie with linux
i installed ubuntu xenial minimal without desktop in my rock 64.
And Now i want to install a LXQT desktop

I DO: sudo apt-get  update
sudo apt-get install xorg
sudo apt-get install LXQT
sudo reboot

but when I reboot dont start the desktop . What can I do bad?
Please any can help me

Thanks a lot


  How to release default swap space
Posted by: jzhang18 - 08-27-2018, 09:08 AM - Forum: Linux on RockPro64 - Replies (2)

I want to release the default swap space and use my own swap space created on NVMe SSD.

jzhang18@rockpro64:~$ free
                  total        used        free      shared  buff/cache   available
Mem:        3969104      309332     3161484       26324      498288     3603600
Swap:       1984536           0     1984536
jzhang18@rockpro64:~$ sudo swapon --show
[sudo] password for jzhang18:
NAME       TYPE      SIZE USED PRIO
/dev/zram0 partition 323M   0B    5
/dev/zram1 partition 323M   0B    5
/dev/zram2 partition 323M   0B    5
/dev/zram3 partition 323M   0B    5
/dev/zram4 partition 323M   0B    5
/dev/zram5 partition 323M   0B    5

how to release /dev/zram0 to 5 during boot time? 
Really appreciated


After adding my own swap file in /etc/fstab, /dev/zram0 -5 is not useful to me. want to release them
jzhang18@rockpro64:~$ free -h
total used free shared buff/cache available
Mem: 3.8G 581M 2.8G 34M 423M 3.2G
Swap: 7.9G 0B 7.9G
jzhang18@rockpro64:~$ sudo swapon --show
[sudo] password for jzhang18:
NAME TYPE SIZE USED PRIO
/swapfile file 6G 0B -1
/dev/zram0 partition 323M 0B 5
/dev/zram1 partition 323M 0B 5
/dev/zram2 partition 323M 0B 5
/dev/zram3 partition 323M 0B 5
/dev/zram4 partition 323M 0B 5
/dev/zram5 partition 323M 0B 5


  Linux Images (ROCKPRO64)
Posted by: pineadmin - 08-27-2018, 02:14 AM - Forum: Linux on RockPro64 - Replies (1)

Added Ubuntu 18.04 Bionic LXDE Desktop Image [microSD / eMMC Boot] [0.7.9] by ayufan
Added Ubuntu 18.04 Bionic minimal 64bit Image [microSD / eMMC Boot] [0.7.9] by ayufan
Added Ubuntu 18.04 Bionic minimal 32bit Image [microSD / eMMC Boot] [0.7.9] by ayufan
Added Ubuntu 18.04 Bionic Containers Image (DockerCE & Kubernetes)[microSD / eMMC Boot] [0.7.9] by ayufan