2019-02-06 09:11:55 +01:00
|
|
|
/* linker.ld - Linker command/script file */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 STMicroelectronics
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2019-11-09 17:49:36 +00:00
|
|
|
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
|
2019-02-06 09:11:55 +01:00
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
|
|
|
|
#include <linker/rel-sections.ld>
|
2019-03-29 17:11:13 +01:00
|
|
|
#ifdef CONFIG_OPENAMP_RSC_TABLE
|
2019-02-06 09:11:55 +01:00
|
|
|
|
|
|
|
SECTION_PROLOGUE(.resource_table,, SUBALIGN(4))
|
|
|
|
{
|
|
|
|
KEEP(*(.resource_table*))
|
|
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
|
|
#endif
|
2019-11-09 17:49:36 +00:00
|
|
|
}
|