Linker files were not migrated with the new <zephyr/...> prefix. Note that the conversion has been scripted, refer to #45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
17 lines
382 B
Text
17 lines
382 B
Text
/*
|
|
* Copyright (c) 2020, Manivannan Sadhasivam <mani@kernel.org>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>
|
|
|
|
SECTIONS
|
|
{
|
|
#ifdef CONFIG_OPENAMP_RSC_TABLE
|
|
SECTION_PROLOGUE(.resource_table,, SUBALIGN(4))
|
|
{
|
|
KEEP(*(.resource_table*))
|
|
} GROUP_LINK_IN(ROMABLE_REGION)
|
|
#endif
|
|
}
|