1/*
2 * Copyright 2023 Codecoup
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7SECTIONS
8{
9	data.bt_conn_cb_area : ALIGN(4)
10	{
11		_bt_conn_cb_list_start = .;
12		KEEP(*(SORT_BY_NAME(._bt_conn_cb.static.*)))
13		_bt_conn_cb_list_end = .;
14	}
15	data.bt_gatt_service_static_area : ALIGN(4)
16	{
17		_bt_gatt_service_static_list_start = .;
18		KEEP(*(SORT_BY_NAME(._bt_gatt_service_static.static.*)))
19		_bt_gatt_service_static_list_end = .;
20	}
21}
22INSERT AFTER .data;
23