From 15bb22f7ed93038a2e7256726b27bf0e45cb4dfe Mon Sep 17 00:00:00 2001 From: Nathaniel Graff Date: Thu, 17 Jan 2019 14:05:49 -0800 Subject: Regen BSPs for separate stacks and heaps Signed-off-by: Nathaniel Graff --- bsp/coreip-s51/mee.lds | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'bsp/coreip-s51') diff --git a/bsp/coreip-s51/mee.lds b/bsp/coreip-s51/mee.lds index 3e454a7..2c2ba1c 100644 --- a/bsp/coreip-s51/mee.lds +++ b/bsp/coreip-s51/mee.lds @@ -20,6 +20,7 @@ PHDRS SECTIONS { __stack_size = DEFINED(__stack_size) ? __stack_size : 0x400; + __heap_size = DEFINED(__heap_size) ? __heap_size : 0x400; .init : @@ -199,18 +200,25 @@ SECTIONS PROVIDE( _end = . ); PROVIDE( end = . ); PROVIDE( mee_segment_bss_target_end = . ); - PROVIDE( mee_segment_heap_target_start = . ); .stack : { - . = ALIGN(8); - . += __stack_size; + PROVIDE(mee_segment_stack_begin = .); + . = __stack_size; PROVIDE( _sp = . ); - PROVIDE( _heap_end = . ); PROVIDE(mee_segment_stack_end = .); } >ram AT>ram :ram + .heap : + { + PROVIDE( mee_segment_heap_target_start = . ); + . = __heap_size; + PROVIDE( mee_segment_heap_target_end = . ); + PROVIDE( _heap_end = . ); + } >ram AT>ram :ram + + } -- cgit v1.2.1-18-gbd029