mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-11 19:25:13 +00:00
This commit follows the parent commit work. This commit introduces the following major changes. 1. Move all directories and files in 'include/zephyr/arch/arm/aarch32' to the 'include/zephyr/arch/arm' directory. 2. Change the path string which is influenced by the changement 1. Signed-off-by: Huifeng Zhang <Huifeng.Zhang@arm.com>
24 lines
409 B
Plaintext
24 lines
409 B
Plaintext
/* linker.ld - Linker command/script file */
|
|
|
|
/*
|
|
* Copyright (c) 2019 STMicroelectronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
#include <zephyr/arch/arm/cortex_m/scripts/linker.ld>
|
|
|
|
SECTIONS
|
|
{
|
|
|
|
#include <zephyr/linker/rel-sections.ld>
|
|
#ifdef CONFIG_OPENAMP_RSC_TABLE
|
|
|
|
SECTION_PROLOGUE(.resource_table,, SUBALIGN(4))
|
|
{
|
|
KEEP(*(.resource_table*))
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
#endif
|
|
}
|