cmake: linker_script: Fix cmake linker for some networking
Iterable sections for CoAP services and network management events were missing. Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
This commit is contained in:
parent
e791e7637f
commit
7b6e9dc4b8
1 changed files with 8 additions and 0 deletions
|
@ -209,6 +209,14 @@ if (CONFIG_HTTP_SERVER)
|
|||
zephyr_iterable_section(NAME http_service_desc KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN CONFIG_LINKER_ITERABLE_SUBALIGN)
|
||||
endif()
|
||||
|
||||
if (CONFIG_COAP_SERVER)
|
||||
zephyr_iterable_section(NAME coap_service KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN CONFIG_LINKER_ITERABLE_SUBALIGN)
|
||||
endif()
|
||||
|
||||
if (CONFIG_NET_MGMT)
|
||||
zephyr_iterable_section(NAME net_mgmt_event_static_handler KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN CONFIG_LINKER_ITERABLE_SUBALIGN)
|
||||
endif()
|
||||
|
||||
if(CONFIG_INPUT)
|
||||
zephyr_iterable_section(NAME input_callback KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN CONFIG_LINKER_ITERABLE_SUBALIGN)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue