mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-29 03:44:59 +00:00
16 lines
314 B
Plaintext
16 lines
314 B
Plaintext
/*
|
|
* SPDX-FileCopyrightText: 2026 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
SECTIONS
|
|
{
|
|
.esp_sys_init_fn :
|
|
{
|
|
PROVIDE(_esp_sys_init_fn_start = .);
|
|
KEEP(*(SORT(.esp_sys_init_fn*)))
|
|
PROVIDE(_esp_sys_init_fn_end = .);
|
|
}
|
|
}
|
|
INSERT AFTER .data;
|