1/* Copyright (C) 2023 BeagleBoard.org Foundation
2 * Copyright (C) 2023 S Prashanth
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <zephyr/arch/arm/cortex_a_r/scripts/linker.ld>
8
9SECTIONS
10{
11#ifdef CONFIG_OPENAMP_RSC_TABLE
12	SECTION_PROLOGUE(.resource_table,, SUBALIGN(4))
13	{
14		KEEP(*(.resource_table*))
15	} GROUP_LINK_IN(RSC_TABLE)
16#endif
17}
18