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