corrects spelling in linker file to adhere to convention

This commit is contained in:
2026-02-11 19:30:41 +01:00
parent 124b83418a
commit 1abf66d3cf

View File

@@ -97,7 +97,7 @@ SECTIONS
/* stack segement, PHDR is stack */ /* stack segement, PHDR is stack */
.stack ORIGIN(LOCATION_STACK) + LENGTH(LOCATION_STACK) - __stack_segment_size : .stack ORIGIN(LOCATION_STACK) + LENGTH(LOCATION_STACK) - __stack_segment_size :
{ {
PROVIDE( _heap_end = . ); PROVIDE( __heap_end = . );
. = __stack_segment_size; . = __stack_segment_size;
PROVIDE( _sp = . ); PROVIDE( _sp = . );
} >LOCATION_STACK AT>LOCATION_STACK } >LOCATION_STACK AT>LOCATION_STACK
@@ -105,5 +105,13 @@ SECTIONS
PROVIDE( tohost = . ); PROVIDE( tohost = . );
PROVIDE( fromhost = . + 8 ); 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.*) } /DISCARD/ : { *(.eh_frame*) *(.comment) *(.note .note.*) }
} }