File tree Expand file tree Collapse file tree 5 files changed +7
-12
lines changed
cmake/linker_script/common
tests/net/lib/http_client Expand file tree Collapse file tree 5 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ if(CONFIG_SENSING)
118
118
endif ()
119
119
120
120
if (CONFIG_ZBUS )
121
- zephyr_iterable_section (NAME zbus_channel_observation_mask GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT} SUBALIGN 1 )
121
+ zephyr_iterable_section (NAME zbus_channel_observation_mask GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT} )
122
122
endif ()
123
123
124
124
if (CONFIG_UVB )
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ if (CONFIG_LOG)
216
216
endif ()
217
217
218
218
if (CONFIG_MULTI_LEVEL_INTERRUPTS )
219
- zephyr_iterable_section (NAME intc_table KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
219
+ zephyr_iterable_section (NAME intc_table KVMA RAM_REGION GROUP RODATA_REGION )
220
220
endif ()
221
221
222
222
if (CONFIG_HTTP_SERVER )
Original file line number Diff line number Diff line change @@ -31,12 +31,10 @@ target_link_libraries(app PRIVATE zephyr_interface zephyr)
31
31
zephyr_linker_sources (SECTIONS sections-rom.ld )
32
32
zephyr_linker_section_ifdef (CONFIG_NET_SAMPLE_HTTPS_SERVICE NAME
33
33
http_resource_desc_test_https_service
34
- KVMA RAM_REGION GROUP RODATA_REGION
35
- SUBALIGN Z_LINK_ITERABLE_SUBALIGN )
34
+ KVMA RAM_REGION GROUP RODATA_REGION )
36
35
zephyr_linker_section_ifdef (CONFIG_NET_SAMPLE_HTTP_SERVICE NAME
37
36
http_resource_desc_test_http_service
38
- KVMA RAM_REGION GROUP RODATA_REGION
39
- SUBALIGN Z_LINK_ITERABLE_SUBALIGN )
37
+ KVMA RAM_REGION GROUP RODATA_REGION )
40
38
41
39
foreach (inc_file
42
40
ca.der
Original file line number Diff line number Diff line change @@ -59,10 +59,8 @@ endif()
59
59
if (CONFIG_NET_SAMPLE_HTTPS_SERVICE )
60
60
zephyr_linker_section_ifdef (CONFIG_NET_SAMPLE_WEBSOCKET_CONSOLE NAME
61
61
http_resource_desc_wss_console_service
62
- KVMA RAM_REGION GROUP RODATA_REGION
63
- SUBALIGN Z_LINK_ITERABLE_SUBALIGN )
62
+ KVMA RAM_REGION GROUP RODATA_REGION )
64
63
endif ()
65
64
zephyr_linker_section_ifdef (CONFIG_NET_SAMPLE_WEBSOCKET_CONSOLE NAME
66
65
http_resource_desc_ws_console_service
67
- KVMA RAM_REGION GROUP RODATA_REGION
68
- SUBALIGN Z_LINK_ITERABLE_SUBALIGN )
66
+ KVMA RAM_REGION GROUP RODATA_REGION )
Original file line number Diff line number Diff line change @@ -9,5 +9,4 @@ target_sources(app PRIVATE ${app_sources})
9
9
10
10
zephyr_linker_sources (SECTIONS sections-rom.ld )
11
11
zephyr_iterable_section (NAME http_resource_desc_test_http_service KVMA
12
- RAM_REGION GROUP RODATA_REGION SUBALIGN $
13
- {CONFIG_LINKER_ITERABLE_SUBALIGN} )
12
+ RAM_REGION GROUP RODATA_REGION )
You can’t perform that action at this time.
0 commit comments