

allatutti
Members-
Posts
19 -
Joined
-
Last visited
Content Type
Forums
Store
Crowdfunding
Applications
Events
Raffles
Community Map
Everything posted by allatutti
-
"spends a long time on counting files ---> file transfer screen flashes by in 1 second" I will say is normal behaviour, I have same symptoms when moving sd 2 usb, but files are moved to usb. In your case what will happen if your do change dtb from 5 to 5b and do reboot still with SD card, will it boot?
-
Hi, have same issue with radxa zero 3w, error messages cannot fork, or resource unavailable, kernel 6.1.75. But only when desktop is installed, with only server version it is fine.
-
OrangePi 5 Pro need help booting into nvme
allatutti replied to Fabricio Martínez Tamayo's topic in Rockchip
maybe specify a bit word "hot" maybe just bad ssd, with original orangepi image are temps ok? Are you using Armbian Image exactly for Orangepi 5 Pro, just asking to be sure. -
OrangePi 5 Pro need help booting into nvme
allatutti replied to Fabricio Martínez Tamayo's topic in Rockchip
with latest armbian build for Orangepi 5 pro you need to: 1) sudo armbian-install 2) select Boot from SD - System on SATA, USB or NVMe 3) confirm and continue with ext4 format etc.... after finish and reboot you will have root on nvme, you can check it with command df -h -
OrangePi 5 Pro need help booting into nvme
allatutti replied to Fabricio Martínez Tamayo's topic in Rockchip
as you mentioned OrangePi 5 Pro is missing spi flash, so instead of spi you must use sdcard for boot, you can only move root partition to nvme. in armbian-config you can use move root to nvme, worked fine as I tested it last time. -
so I found issue, there is no device tree for orangepi 5 pro in dtb folder, as solution I updated armbianEnv and corrected fdt file to orangepi5 only, now it boots but with device tree for orangepi5 (no Pro). Just in case someone will try.
-
yes I saw that video, need to buy uart debug tools so myabe in two weeks 😕
-
To be honest I did not count that those images will be available for Orangepi 5 Pro, but when I saw them I just test them and asked if someone else tested and have same issue or I did something wrong.
-
nope, I am using Raspberry pi 5.1V 5A power supply, other Armbian versions working just fine.
-
Hello, I was trying to boot Armbian 6.10 from https://www.armbian.com/orange-pi-5-pro/ minimal or normal desktop, none of them are working/booting, maybe hint what am I doing wrong? Thank you
-
Building Armbian Distribution with Kernel 6.10 for Orange Pi 5 Pro
allatutti replied to Sergey Dulimov's topic in Rockchip
Is there any info what exactly is needed for armbian? When I take a look at decompiled dtb it had about 2500 lines of code, in metioned dts are only about 700 lines. Thank you -
If not working with that img, you will probably need to use overlays, https://github.com/orangepi-xunlong/linux-orangepi/tree/orange-pi-6.1-rk35xx/arch/arm64/boot/dts/rockchip/overlay sudo armbian-add-overlay rk3588-ssd-sata2.dts rk3588-ssd-sata0.dts
-
So solution found to have USB 3.0 working on Orangepi 5 Pro you need to edit dtb file rk3588s-orangepi-5-pro.dtb commands to use: https://gist.github.com/TobidieTopfpflanze/c162f551ffc4a2be21dbd168371ef347 in DTB file Line 2663 for usbdrd3_0, you need to change dr_mode = "otg" to dr_mode = "host" all credits goes to Joshua Riek https://github.com/Joshua-Riek/linux-rockchip/commit/cc972a2683c329ad8454148134829123dc1c92e2 Will be nice/helpfull if Armbian techs can implement it into main image, Thank you Just as an info, so far I have best performance experience with Armbian Debian images, Thank you for those images https://browser.geekbench.com/user/marosr
-
I am using Debian Image (https://www.armbian.com/orange-pi-5-pro/), USB 3.0 is not working, does not have any power, with original distros or (JR Ubuntu) is USB 3.0 working, any idea how to bring it to life? Thank you Linux orangepi5pro 6.1.75-vendor-rk35xx #1 SMP Fri Jul 19 14:49:03 UTC 2024 aarch64 GNU/Linux admin@orangepi5pro:~$ lsusb Bus 004 Device 002: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle (HCI mode) Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 002: ID 1a40:0101 Terminus Technology Inc. Hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
-
nope with original orangepi debian image you dint need to do point 1. Only go to orangepi-config and enable I2C5 M3 there.
-
For older Kernel Linux orangepi5 5.10.160-rockchip-rk3588 you will need to install python3-psutil sudo apt install python3-psutil
-
OLED stats working also in debian, you need to activate I2C5 M3 overlay in orangepi-config
-
If someone is interested can easy setup OledStats for OrangePi5 and SSD1306 Hardware: Orangepi5 SSD1306 OLED display Software Armbian Jammy KDE Neon 6.1.43 Files attached in ZIP archive device.py PixelOperator.ttf setup.py stats.py How to: 1) add overlay wget https://raw.githubusercontent.com/orangepi-xunlong/linux-orangepi/orange-pi-5.10-rk3588/arch/arm64/boot/dts/rockchip/overlay/rk3588-i2c5-m3.dts sudo armbian-add-overlay rk3588-i2c5-m3.dts reboot 2) connect OLED display to I2C5 M3 Pins SDA + SCL (pins 1(VCC),2(SDA),3(SCL) and 5(GND)) check connection sudo i2cdetect -y 5 must be detected 3c value 3) install needed libs sudo apt-get install i2c-tools python3-smbus python3-pip python3-dev python3-pil 4) download main karabek project git clone https://github.com/karabek/OrangePi-OLED cd OrangePi-OLED rename old setup.py mv setup.py setup_old.py 4) create new setup.py or copy from ZIP archive nano setup.py #!/usr/bin/env python from setuptools import setup setup( name="ssd1306", version="0.1.0", author="Richard Hull", author_email="richard.hull@destructuring-bind.org", description="A small library to drive an OLED device with either SSD1306 or SH1106 chipset", license="MIT", keywords="raspberry pi rpi oled ssd1306 sh1106", url="https://github.com/rm-hull/ssd1306", packages=['oled'], ) 5) Start setup.py sudo python3 setup.py sdist 6) copy generated folders to python3 dist packages sudo cp -r OrangePi-OLED/oled/ /usr/local/lib/python3.10/dist-packages/ sudo cp -r OrangePi-OLED/ssd1306.egg-info/ /usr/local/lib/python3.10/dist-packages/ 7) replace device.py file with file in ZIP archive in dist-packages oled folder cd /usr/local/lib/python3.10/dist-packages/oled mv device.py device_old.py 9) copy stats.py and font file PixelOperator.ttf from ZIP archive start stats.py file sudo python3 stats.py result should be same as on RPI device picture Orangepi5_OLED.zip
-
was it able for you to run this I2C oled display? Thank you