amazingfate
Members-
Posts
82 -
Joined
-
Last visited
Content Type
Forums
Store
Crowdfunding
Applications
Events
Raffles
Community Map
Everything posted by amazingfate
-
Installing Ambian Bookworm to NVME / M2 SSD
amazingfate replied to AaronNGray's topic in Banana Pi M7
Armbian is using zram to configure swap by default, so it has no swap partitrion in its image. I you want separate swap partition you have to install the system on your own, by rsync the whole system to parted NVME root patition, and write correct root partition UUID to /boot/armbianEnv.txt, and config swap in /etc/fstab. -
I don't know why the man from kodi recommend opengl instead if opengles, it's arm platform, opengl won't work.
-
Installing Ambian Bookworm to NVME / M2 SSD
amazingfate replied to AaronNGray's topic in Banana Pi M7
Hi, there is a simple way to install armbian to NVME SSD. 1, Boot armbian from sd card 2, Burn u-boot to emmc: You can find u-boot firmware at $ ls /usr/lib/linux-u-boot-*/ idbloader.img rkspi_loader.img u-boot.itb Use dd command to flash u-boot: dd if=./idbloader.img of=/dev/mmcblk0 seek=64 conv=notrunc status=none dd if=./u-boot.itb of=/dev/mmcblk0 seek=16384 conv=notrunc status=none 3, Burn armbian image to NVME SSD, you can use dd in the armbian system on sd card with command: sudo dd if=./Armbian.img of=/dev/nvme0n1 bs=1M status=progress or use application like balenaEtcher on windows to flash image to SSD. 4, Unplug sd card and plug NVME SSD, now you should be able to boot armbian system on NVME SSD. -
Armbian doesnt seem to see sata harddrives.
amazingfate replied to DontMindMe's topic in Radxa Rock 5 ITX
@IgorRock5 ITX is using a sata bridge connected to pcie, so an overlay won't fix this. Sometimes PCIE interface used by the 4 port sata is not detected by 6.1 kernel. -
4.3.1 moonlight is linked to ffmpeg 4.4, while new moonlight is linked to ffmpeg 6 because libavcode-dev in my ppa is updated to 6.0. Decoding time caculation is ffmpeg releated. I think moonlight can't distinguish decoding time and rendering time with new ffmpeg.
-
Decoding time is ok if there is no frame drop.
-
Rock 5C with Ubuntu noble CLI and vendor kernel
amazingfate replied to Dual-O's topic in Radxa Rock 5C
eMMC is also okay. -
Rock 5C with Ubuntu noble CLI and vendor kernel
amazingfate replied to Dual-O's topic in Radxa Rock 5C
I just downloaded `Armbian_24.5.1_Rock-5c_noble_vendor_6.1.43.img.xz` and flashed it to tf card and my rock5c lite can boot with hdmi output, no issues. -
@peter.eismann I added patches to glibc: https://launchpad.net/~liujianfeng1994/+archive/ubuntu/rockchip-multimedia/+sourcefiles/glibc/1:2.35-0ubuntu3.4+2widevine/glibc_2.35-0ubuntu3.4+2widevine.debian.tar.xz But it seems that this patch is no longer needed with newer glibc: https://aur.archlinux.org/packages/widevine
-
@peter.eismannYou are using EGL as render method, which will only support NV12 format. You can try direct-to-plane.
-
@peter.eismann I don't know about the netflix issue and I can't confirm that. Kodi does not run well inside a wayland session. You can try to login to a gbm session from display manager.
-
GPU driver installation problem on Rock5B (Armbian Bookworm Minimal)
amazingfate replied to Norbert Kett's topic in Rockchip
I guess no. The method you use is trying to find /dev/dri/card* as gpu device, but with this kernel there is no such gpu device. -
GPU driver installation problem on Rock5B (Armbian Bookworm Minimal)
amazingfate replied to Norbert Kett's topic in Rockchip
That's because /dev/dri/card1 is npu, and opengl think it is a graphic card. -
@nyanmisakathanks, mpv with hwdec rkmpp works. And kodi in my ppa need patches to work.
- 47 replies
-
- Orange Pi 5
- Orange Pi 5B
-
(and 1 more)
Tagged with:
-
GPU driver installation problem on Rock5B (Armbian Bookworm Minimal)
amazingfate replied to Norbert Kett's topic in Rockchip
kernel 6.8 is mainline kernel, panfork won't work on it. -
@Spooky kodi is not working with this version of ffmpeg, videos are displayed black. Mpv also not work, how did you get mpv work with hardware decoding?
- 47 replies
-
- Orange Pi 5
- Orange Pi 5B
-
(and 1 more)
Tagged with:
-
GPU driver installation problem on Rock5B (Armbian Bookworm Minimal)
amazingfate replied to Norbert Kett's topic in Rockchip
You didn't set the correct url. Open https://build.opensuse.org/project/show/home:amazingfate:panfork-mesa in browser, and click "Repositories", then click "Debian_12", then click "Go to download repository" to get the real repo url. You need to understand the document. Simple copy-paste usually not works. -
GPU driver installation problem on Rock5B (Armbian Bookworm Minimal)
amazingfate replied to Norbert Kett's topic in Rockchip
Take a look at obs's doc: https://en.opensuse.org/openSUSE:Build_Service_Debian_builds#Configuring_sources.list -
GPU driver installation problem on Rock5B (Armbian Bookworm Minimal)
amazingfate replied to Norbert Kett's topic in Rockchip
launchpad ppa doesn't support debian use obs repo for debian bookworm: https://build.opensuse.org/project/show/home:amazingfate:panfork-mesa -
@SpookyWill these packages work with old 5.10 legacy kernel? Some people may still using 5.10 kernel. I will test them later.
- 47 replies
-
- Orange Pi 5
- Orange Pi 5B
-
(and 1 more)
Tagged with:
-
@Spooky Many thanks to your work. My company is pushing me hard these days and I don't have time to test 6.1 kernel. If these packages is working for you I can just copy it to my ppa. I can see ffmpeg, librga, libv4l-rkmpp, mpp is updated to latest upstream version. What are the changes you make to librist, mpv and v4l-util?
- 47 replies
-
- Orange Pi 5
- Orange Pi 5B
-
(and 1 more)
Tagged with:
-
[Bug] System restarts on seek on h264 video files
amazingfate replied to rix81's topic in Orange Pi 5
Mpv doesn't controll rkmpp by hwdec. It just get what ffmpeg gives. You can set sw decoder by ffplay: ffplay -vcodec h264 test.mp4