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 17#ifdef CONFIG_LLEXT 18#include <zephyr/linker/llext-sections.ld> 19#endif 20 21#ifdef CONFIG_OPENAMP_RSC_TABLE 22 23 SECTION_PROLOGUE(.resource_table,, SUBALIGN(4)) 24 { 25 KEEP(*(.resource_table*)) 26 } GROUP_LINK_IN(ROMABLE_REGION) 27#endif 28} 29