commit | b2d3fdcefffa7510c2f586f9785e7ac3f6b02034 | [log] [tgz] |
---|---|---|
author | Mahesh Mahadevan <mahesh.mahadevan@nxp.com> | Wed Apr 13 14:28:19 2022 -0500 |
committer | Marti Bolivar <marti.bolivar@nordicsemi.no> | Mon Apr 18 17:24:12 2022 -0700 |
tree | 62016ec182b8ee2013fbee461a55cf3f0f11e0ae | |
parent | f9a3f02b867ac7925df1da215c5f3dceee2e6630 [diff] |
cmake: Add support to add symbols to ramfunc section This PR allows the user to add symbols to the ramfunc section. The use for this could be as follows: zephyr_linker_sources_ifdef(CONFIG_ARCH_HAS_RAMFUNC_SUPPORT RAMFUNC_SECTION quick_access_code.ld ) quick_access_code.ld (as shown below) can define additional symbols to go into the ramfunc section . = ALIGN(4); KEEP(*(CodeQuickAccess)) Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>