cmake: Fix typo in common-rom.cmake

ALIGN_WITH_INPUT is an argument for zephyr_linker_section, not
zephyr_linker_section_configure. Fix the calls for section .emulators
accordingly.

Signed-off-by: Abe Levkoy <alevkoy@google.com>
This commit is contained in:
Abe Levkoy 2022-05-23 12:28:48 -06:00 committed by Fabio Baltieri
parent afb99a77fa
commit 63d75cc26d

View file

@ -143,8 +143,8 @@ endif()
zephyr_iterable_section(NAME k_p4wq_initparam KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4)
if(CONFIG_EMUL)
zephyr_linker_section(NAME emulators_section GROUP RODATA_REGION)
zephyr_linker_section_configure(SECTION emulators_section INPUT ".emulators" KEEP SORT NAME ${XIP_ALIGN_WITH_INPUT})
zephyr_linker_section(NAME emulators_section GROUP RODATA_REGION ${XIP_ALIGN_WITH_INPUT})
zephyr_linker_section_configure(SECTION emulators_section INPUT ".emulators" KEEP SORT NAME)
endif()
if(CONFIG_DNS_SD)