Skip to content

Commit 0e4d4fa

Browse files
Wayne Rengalak
authored andcommitted
include/linker: .object_access.* should be in ROM
.object_access.* sections should be with GROUP_LINK_IN(ROMABLE_REGION) as other sections in common-rom.ld Fixes #15481 Signed-off-by: Wayne Ren <[email protected]> Signed-off-by: Anas Nashif <[email protected]>
1 parent db8d328 commit 0e4d4fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linker/common-rom.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
__object_access_start = .;
4242
KEEP(*(".object_access.*"))
4343
__object_access_end = .;
44-
}
44+
} GROUP_LINK_IN(ROMABLE_REGION)
4545
#endif
4646

4747
SECTION_PROLOGUE(app_shmem_regions,,)

0 commit comments

Comments
 (0)