Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

jz47xx: fix plugins/codec link address

Removing STUBOFFSET in commit 78542df4666 caused DRAMSIZE
to be computed incorrectly, not taking into account the
16k offset used for 'IRAM'. As a result plugins & codecs
got shifted 16k upwards from their intended load address,
making them unable to load.

Change-Id: I6c338e04506e12fa2b8a69286a1ed785a2f8042d

+3
+3
apps/plugins/plugin.lds
··· 77 77 #elif CONFIG_CPU==IMX233 78 78 #include "cpu.h" 79 79 #define DRAMSIZE (DRAM_SIZE - PLUGIN_BUFFER_SIZE - CODEC_SIZE - FRAME_SIZE - TTB_SIZE) 80 + #elif CONFIG_CPU == JZ4732 || CONFIG_CPU == JZ4760B 81 + /* fake 'iram' region occupies first 16k */ 82 + #define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGIN_BUFFER_SIZE - CODEC_SIZE - 0x4000 80 83 #elif CONFIG_CPU==X1000 81 84 #include "cpu.h" 82 85 #define DRAMSIZE (X1000_DRAM_SIZE - PLUGIN_BUFFER_SIZE - CODEC_SIZE)