-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.ld
25 lines (24 loc) · 1.02 KB
/
common.ld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
. = ALIGN(8);
*(._k_queue.static.*)
*(._k_sem.static.*)
*(._k_mutex.static.*)
_bt_gatt_service_static_list_start = .;
KEEP(*(SORT_BY_NAME("._bt_gatt_service_static.static.*")))
_bt_gatt_service_static_list_end = .;
_bt_l2cap_fixed_chan_list_start = .;
KEEP(*(SORT_BY_NAME("._bt_l2cap_fixed_chan.static.*")))
_bt_l2cap_fixed_chan_list_end = .;
_bt_l2cap_br_fixed_chan_list_start = .;
KEEP(*(SORT_BY_NAME("._bt_l2cap_br_fixed_chan.static.*")))
_bt_l2cap_br_fixed_chan_list_end = .;
_bt_conn_cb_list_start = .;
KEEP(*(SORT_BY_NAME("._bt_conn_cb.static.*")))
_bt_conn_cb_list_end = .;
_k_mem_slab_list_start = .;
KEEP(*(SORT_BY_NAME("._k_mem_slab.static.*")))
_k_mem_slab_list_end = .;
_net_buf_pool_list = .;
_net_buf_pool_list_start = .;
KEEP(*(SORT_BY_NAME("._net_buf_pool.static.*")))
_net_buf_pool_list_end = .;
PROVIDE( _net_buf_pool_list = _net_buf_pool_list_start);