1/* This is a stub file for the linker. None of the sections are used by the test. */
2
3/*
4 * Copyright (c) 2024 Nordic Semiconductor ASA
5 *
6 * SPDX-License-Identifier: Apache-2.0
7 */
8
9SECTIONS
10{
11	bt_conn_cb_area : ALIGN(4)
12	{
13		_bt_conn_cb_list_start = .;
14		KEEP(*(SORT_BY_NAME(._bt_conn_cb.static.*)))
15		_bt_conn_cb_list_end = .;
16	}
17}
18INSERT AFTER .data;
19
20SECTIONS
21{
22	net_buf_pool : ALIGN(4)
23	{
24		_net_buf_pool_list_start = .;
25		KEEP(*(SORT_BY_NAME(._net_buf_pool.static.*)))
26		_net_buf_pool_list_end_end = .;
27	}
28}
29INSERT AFTER .bss;
30