How to place the custom linker section in the .data section?

Hi,

I am working with nrf5340 with the Zephyr OS. I created a custom data section in a custom linker file.

.my_data_section :
{
PROVIDE(__my_data_section_start = .);
KEEP(*(.my_data_section))
PROVIDE(__my_data_section_end = .);
} > RAM AT > FLASH

I want to place "my_data_section"  under ".data" section in the final linker file. How can I do that?

Related