2023-07-11 13:42:14 +08:00
|
|
|
/* linker.ld - Linker command/script file
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 Texas Instruments Incorporated
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2023-07-04 16:01:39 +08:00
|
|
|
#include <zephyr/arch/arm/cortex_m/scripts/linker.ld>
|
2023-07-11 13:42:14 +08:00
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_OPENAMP_RSC_TABLE
|
|
|
|
SECTION_PROLOGUE(.resource_table,, SUBALIGN(4))
|
|
|
|
{
|
|
|
|
KEEP(*(.resource_table*))
|
|
|
|
} GROUP_LINK_IN(DDR)
|
|
|
|
#endif
|
|
|
|
}
|