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.

echoplayer: disable boot data

The current bootdata mechanism won't work well for
ELF binaries so disable it.

Change-Id: If6721ef88a38af76711bbdc6b561529dc3b33557

authored by

Aidan MacDonald and committed by
Solomon Peachy
e3bf9210 0f5c4212

+3 -11
+3 -3
firmware/export/config/echor1.h
··· 89 89 #define BATTERY_CAPACITY_MAX 1100 90 90 #define BATTERY_CAPACITY_INC 0 91 91 92 - /* Multiboot */ 93 - #define HAVE_BOOTDATA 94 - #define BOOT_REDIR "rockbox_main.echor1" 92 + /* TODO: Multiboot */ 93 + //#define HAVE_BOOTDATA 94 + //#define BOOT_REDIR "rockbox_main.echor1" 95 95 96 96 /* USB support */ 97 97 #ifndef SIMULATOR
-1
firmware/target/arm/stm32/app.lds
··· 39 39 { 40 40 loadaddress = .; /* only needed to keep ROLO happy */ 41 41 42 - KEEP(*(.bootdata)) 43 42 *(.init.text*) 44 43 *(.text*) 45 44 } > SRAM_AXI :sram_rx
-7
firmware/target/arm/stm32/crt0-stm32h7.S
··· 19 19 * 20 20 ****************************************************************************/ 21 21 #include "config.h" 22 - #include "bootdata.h" 23 22 #include "regs/stm32h743/pwr.h" 24 23 25 24 .syntax unified 26 25 .text 27 - 28 - #if defined(HAVE_BOOTDATA) && !defined(BOOTLOADER) 29 - .section .bootdata 30 - 31 - put_boot_data_here 32 - #endif 33 26 34 27 .section .init.text,"ax",%progbits 35 28