linker: remove references to no longer exist _k_memory_pool
Commit 73cb9586ce
renamed linker
section from _k_memory_pool to _k_mem_pool, but the references
in linker scripts are still there. So remove them now.
Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
parent
d97df043b4
commit
bd40fc2c90
2 changed files with 1 additions and 13 deletions
|
@ -63,7 +63,6 @@
|
|||
|
||||
SECTION_DATA_PROLOGUE(_k_mem_pool_area, (OPTIONAL), SUBALIGN(4))
|
||||
{
|
||||
KEEP(*(SORT_BY_NAME("._k_memory_pool.struct*")))
|
||||
_k_mem_pool_list_start = .;
|
||||
KEEP(*(SORT_BY_NAME("._k_mem_pool.static.*")))
|
||||
_k_mem_pool_list_end = .;
|
||||
|
@ -137,17 +136,6 @@
|
|||
_k_event_list_end = .;
|
||||
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
||||
|
||||
SECTION_DATA_PROLOGUE(_k_memory_pool, (OPTIONAL), SUBALIGN(4))
|
||||
{
|
||||
*(._k_memory_pool.struct*)
|
||||
KEEP(*(SORT_BY_NAME("._k_memory_pool.struct*")))
|
||||
|
||||
_k_mem_pool_start = .;
|
||||
*(._k_memory_pool.*)
|
||||
KEEP(*(SORT_BY_NAME("._k_memory_pool*")))
|
||||
_k_mem_pool_end = .;
|
||||
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
||||
|
||||
SECTION_DATA_PROLOGUE(_net_buf_pool_area, (OPTIONAL), SUBALIGN(4))
|
||||
{
|
||||
_net_buf_pool_list = .;
|
||||
|
|
|
@ -856,7 +856,7 @@ class SizeCalculator:
|
|||
alloc_sections = ["bss", "noinit", "app_bss", "app_noinit", "ccm_bss",
|
||||
"ccm_noinit"]
|
||||
rw_sections = ["datas", "initlevel", "_k_task_list", "_k_event_list",
|
||||
"_k_memory_pool", "exceptions", "initshell",
|
||||
"exceptions", "initshell",
|
||||
"_static_thread_area", "_k_timer_area",
|
||||
"_k_mem_slab_area", "_k_mem_pool_area", "sw_isr_table",
|
||||
"_k_sem_area", "_k_mutex_area", "app_shmem_regions",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue