mirror of https://github.com/thesofproject/sof.git
27 lines
638 B
Plaintext
27 lines
638 B
Plaintext
#include "include/mock_memory.h"
|
|
|
|
SECTIONS
|
|
{
|
|
.static_uuid_entries (COPY) : ALIGN(1024)
|
|
{
|
|
*(*.static_uuids)
|
|
}
|
|
|
|
.static_log_entries (COPY) : ALIGN(1024)
|
|
{
|
|
*(*.static_log*)
|
|
}
|
|
|
|
_comp_init_start = .;
|
|
_comp_init_end = .;
|
|
_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;
|
|
_runtime_shared_heap = HEAP_RUNTIME_SHARED_BASE;
|
|
_system_shared_heap = HEAP_SYSTEM_SHARED_BASE;
|
|
_module_heap = HEAP_RUNTIME_BASE;
|
|
_buffer_heap = HEAP_BUFFER_BASE;
|
|
}
|
|
INSERT AFTER .text;
|