From add4ef840b9d64e914b8f15c12a662654e9b93cc Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Fri, 13 Feb 2026 10:04:17 +0000 Subject: [PATCH] removes trace section As there is no definitive decision as to where the tracing should be placed in the memory, it is removed for now --- src/sections.ld | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/sections.ld b/src/sections.ld index ea20858..17ccbf0 100644 --- a/src/sections.ld +++ b/src/sections.ld @@ -105,13 +105,5 @@ SECTIONS PROVIDE( tohost = . ); PROVIDE( fromhost = . + 8 ); - .trace_buffer (NOLOAD) : - { - . = ORIGIN(trace); - __trace_buffer_start = .; - . = ORIGIN(trace) + LENGTH(trace); /* pad until end of trace */ - __trace_buffer_end = .; - } > trace - /DISCARD/ : { *(.eh_frame*) *(.comment) *(.note .note.*) } }