Add RPMSG/OpenAMP ressource table definition for the IMX7d SOC. Signed-off-by: Jérémy LOCHE - MAKEEN Energy <jlh@makeenenergy.com>
17 lines
331 B
Text
17 lines
331 B
Text
/*
|
|
* Copyright (c) 2024, MAKEEN Energy A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/arch/arm/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
|
|
}
|