We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a00577c commit 92d06acCopy full SHA for 92d06ac
soc/nxp/imx/CMakeLists.txt
@@ -1,4 +1,4 @@
1
-# Copyright 2024 NXP
+# Copyright 2024-2025 NXP
2
# SPDX-License-Identifier: Apache-2.0
3
4
add_subdirectory(${SOC_SERIES})
@@ -9,3 +9,7 @@ zephyr_include_directories(${SOC_SERIES})
9
zephyr_include_directories(${SOC_SERIES}/include)
10
11
zephyr_include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../common)
12
+
13
+if(CONFIG_CPU_CORTEX_A)
14
+ zephyr_linker_sources_ifdef(CONFIG_OPENAMP_RSC_TABLE SECTIONS rsc_table.ld)
15
+endif()
soc/nxp/imx/rsc_table.ld
@@ -0,0 +1,10 @@
+/*
+ * Copyright 2025 NXP
+ *
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
7
+SECTION_PROLOGUE(.resource_table,, SUBALIGN(8))
8
+{
+ KEEP(*(.resource_table*))
+} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
0 commit comments