2019-05-28 17:43:50 +08:00
|
|
|
#include "include/mock_memory.h"
|
|
|
|
|
2018-09-24 21:39:37 +08:00
|
|
|
SECTIONS
|
|
|
|
{
|
2020-02-19 17:31:23 +08:00
|
|
|
.static_uuid_entries (COPY) : ALIGN(1024)
|
|
|
|
{
|
|
|
|
*(*.static_uuids)
|
|
|
|
}
|
2018-09-24 21:39:37 +08:00
|
|
|
|
|
|
|
.static_log_entries (COPY) : ALIGN(1024)
|
|
|
|
{
|
|
|
|
*(*.static_log*)
|
|
|
|
}
|
|
|
|
|
2019-03-08 01:21:29 +08:00
|
|
|
_comp_init_start = .;
|
|
|
|
_comp_init_end = .;
|
2019-05-28 17:43:50 +08:00
|
|
|
_system_heap = HEAP_SYSTEM_0_BASE;
|
|
|
|
_system_heap_start = HEAP_SYSTEM_0_BASE;
|
|
|
|
_system_runtime_heap = HEAP_SYS_RUNTIME_0_BASE;
|
|
|
|
_sof_core_s_start = SOF_CORE_S_START;
|
2020-09-25 00:10:48 +08:00
|
|
|
_runtime_shared_heap = HEAP_RUNTIME_SHARED_BASE;
|
|
|
|
_system_shared_heap = HEAP_SYSTEM_SHARED_BASE;
|
2021-09-03 12:35:34 +08:00
|
|
|
_module_heap = HEAP_RUNTIME_BASE;
|
|
|
|
_buffer_heap = HEAP_BUFFER_BASE;
|
2018-09-24 21:39:37 +08:00
|
|
|
}
|
|
|
|
INSERT AFTER .text;
|