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.

stm32h7: rename startup code .init.text section to .init

Do this for compatibility with INIT_ATTR, which uses the
.init section.

Change-Id: I473c29e3d38e5d5a563c98fc910d725024072735

+3 -3
+1 -1
firmware/target/arm/stm32/app.lds
··· 39 39 { 40 40 loadaddress = .; /* only needed to keep ROLO happy */ 41 41 42 - *(.init.text*) 42 + *(.init*) 43 43 *(.text*) 44 44 } > SRAM_AXI :sram_rx 45 45
+1 -1
firmware/target/arm/stm32/boot.lds
··· 18 18 { 19 19 KEEP(*(.vectors.arm)) 20 20 KEEP(*(.vectors.platform)) 21 - *(.init.text*) 21 + *(.init*) 22 22 *(.text*) 23 23 *(.rodata*) 24 24 } > FLASH1
+1 -1
firmware/target/arm/stm32/crt0-stm32h7.S
··· 24 24 .syntax unified 25 25 .text 26 26 27 - .section .init.text,"ax",%progbits 27 + .section .init,"ax",%progbits 28 28 29 29 .global reset_handler 30 30 .type reset_handler, function