1/* linker.ld - Linker command/script file */
2
3/*
4 * Copyright (c) 2019 STMicroelectronics
5 *
6 * SPDX-License-Identifier: Apache-2.0
7 */
8
9
10#include <zephyr/arch/arm/cortex_m/scripts/linker.ld>
11
12SECTIONS
13    {
14
15#include <zephyr/linker/rel-sections.ld>
16#ifdef CONFIG_OPENAMP_RSC_TABLE
17
18	SECTION_PROLOGUE(.resource_table,, SUBALIGN(4))
19	{
20		KEEP(*(.resource_table*))
21    	} GROUP_LINK_IN(ROMABLE_REGION)
22#endif
23}
24