Unofficial LE for RK356x RK3328\RK3399 RK3588(s) RK3576

  • please push changes to your GitHub repo, thanks.

    switching to wayland · 150balbes/LibreELEC.tv@7a90b8e


    п.с. тут не все изменения строго нужны, просто добавил сразу то, что-бы можно было запустить сборку и получить готовый образ для rock5b с рабочим выводом на экран.

    PROJECT=Rockchip DEVICE=RK3588 ARCH=aarch64 UBOOT_SYSTEM=rock-5b make image

  • balbes150

    So I can confirm this works on the NanoPi-r6C

    I have no experience installing u-boot, but with some dd magic and pure luck I got it to boot, albeit with an outdated/limited device tree so I have no audio atm. (although i see it loading the current dtb in the log). But it boots and it was fun to see that it works.

    Code
    After examination:
    00000000	MBR
    00008000	RKNS/idbloader/bootloader
    00800000	u-boot
    00C00000	trust.img

    So I used the OpenWRT image and skipped the EFI/MBR part and wrote from 0x8000 to 0x00c00000 (12M)

    Code
    $ dd if=owrt bs=1 skip=$((0x8000)) count=$((0x00c00000-0x8000)) seek=$((0x8000)) of=/dev/sda
    12550144+0 records in
    12550144+0 records out
    12550144 bytes (13 MB, 12 MiB) copied, 20,1171 s, 624 kB/s
    $ 

    Bootlog:

    Edited once, last by Elicity: Corrected some minor errors. (June 12, 2025 at 6:28 PM).