File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed
app_event_manager_profiler_tracer Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ zephyr_sources(app_event_manager.c)
99zephyr_sources_ifdef(CONFIG_APP_EVENT_MANAGER_SHELL app_event_manager_shell.c)
1010
1111zephyr_linker_sources(SECTIONS aem.ld)
12- zephyr_iterable_section(NAME event_type KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
13- zephyr_iterable_section(NAME event_listener KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
14- zephyr_iterable_section(NAME app_event_manager_postinit_hook KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
15- zephyr_iterable_section(NAME event_submit_hook KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
16- zephyr_iterable_section(NAME event_preprocess_hook KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
17- zephyr_iterable_section(NAME event_postprocess_hook KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
12+ zephyr_iterable_section(NAME event_type KVMA RAM_REGION GROUP RODATA_REGION)
13+ zephyr_iterable_section(NAME event_listener KVMA RAM_REGION GROUP RODATA_REGION)
14+ zephyr_iterable_section(NAME app_event_manager_postinit_hook KVMA RAM_REGION GROUP RODATA_REGION)
15+ zephyr_iterable_section(NAME event_submit_hook KVMA RAM_REGION GROUP RODATA_REGION)
16+ zephyr_iterable_section(NAME event_preprocess_hook KVMA RAM_REGION GROUP RODATA_REGION)
17+ zephyr_iterable_section(NAME event_postprocess_hook KVMA RAM_REGION GROUP RODATA_REGION)
1818
1919zephyr_linker_section(NAME event_subscribers_all KVMA RAM_REGION GROUP RODATA_REGION NOINPUT)
2020zephyr_linker_section_configure(SECTION event_subscribers_all
Original file line number Diff line number Diff line change 77zephyr_include_directories(.)
88zephyr_sources_ifdef(CONFIG_APP_EVENT_MANAGER_PROFILER_TRACER app_event_manager_profiler_tracer.c)
99zephyr_linker_sources(SECTIONS em_pt.ld)
10- zephyr_iterable_section(NAME nrf_profiler_info KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
10+ zephyr_iterable_section(NAME nrf_profiler_info KVMA RAM_REGION GROUP RODATA_REGION)
Original file line number Diff line number Diff line change 66
77zephyr_sources(core.c)
88zephyr_linker_sources(SECTIONS core.ld)
9- zephyr_iterable_section(NAME bt_le_adv_prov_ad KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
10- zephyr_iterable_section(NAME bt_le_adv_prov_sd KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
9+ zephyr_iterable_section(NAME bt_le_adv_prov_ad KVMA RAM_REGION GROUP RODATA_REGION)
10+ zephyr_iterable_section(NAME bt_le_adv_prov_sd KVMA RAM_REGION GROUP RODATA_REGION)
1111
1212add_subdirectory (providers)
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ zephyr_library_sources_ifdef(CONFIG_BT_FAST_PAIR_BOND_MANAGER fp_bond_manager.c)
2323
2424zephyr_linker_sources_ifdef(CONFIG_BT_FAST_PAIR_ACTIVATION SECTIONS fp_activation.ld)
2525if (CONFIG_BT_FAST_PAIR_ACTIVATION)
26- zephyr_iterable_section(NAME fp_activation_module KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
26+ zephyr_iterable_section(NAME fp_activation_module KVMA RAM_REGION GROUP RODATA_REGION)
2727endif ()
2828zephyr_library_sources_ifdef(CONFIG_BT_FAST_PAIR_ACTIVATION fp_activation.c)
2929
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ zephyr_library_named(fp_storage)
88
99if (CONFIG_BT_FAST_PAIR_STORAGE_MANAGER)
1010 zephyr_linker_sources(SECTIONS fp_storage_manager.ld)
11- zephyr_iterable_section(NAME fp_storage_manager_module KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN 4 )
11+ zephyr_iterable_section(NAME fp_storage_manager_module KVMA RAM_REGION GROUP RODATA_REGION)
1212 target_sources (fp_storage PRIVATE fp_storage_manager.c)
1313endif ()
1414if (CONFIG_BT_FAST_PAIR_STORAGE_AK_BACKEND_STANDARD)
Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ zephyr_sources(emds_flash.c)
99zephyr_linker_sources(SECTIONS emds_types.ld)
1010
1111if (DEFINED CONFIG_EMDS)
12- zephyr_iterable_section(NAME emds_entry KVMA RAM_REGION GROUP RODATA_REGION SUBALIGN ${CONFIG_LINKER_ITERABLE_SUBALIGN} )
12+ zephyr_iterable_section(NAME emds_entry KVMA RAM_REGION GROUP RODATA_REGION)
1313endif ()
You can’t perform that action at this time.
0 commit comments