Files
esp-idf/components/esp_system/ld/linux/sections.ld
Marius Vikhammer be36c20503 feat(esp_system): add esp_sys_event framework
Introduce a shared esp system event framework and use it
for system init and shutdown.
2026-06-03 15:02:43 +08:00

27 lines
662 B
Plaintext

/*
* SPDX-FileCopyrightText: 2026 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
SECTIONS
{
.esp_sys_event :
{
. = ALIGN(4);
PROVIDE(_esysev_shdn_start = .);
KEEP(*(SORT_BY_INIT_PRIORITY(.esysev_shdn.*)))
PROVIDE(_esysev_shdn_end = .);
. = ALIGN(4);
PROVIDE(_esysev_initc_start = .);
KEEP(*(SORT_BY_INIT_PRIORITY(.esysev_initc.*)))
PROVIDE(_esysev_initc_end = .);
. = ALIGN(4);
PROVIDE(_esysev_inits_start = .);
KEEP(*(SORT_BY_INIT_PRIORITY(.esysev_inits.*)))
PROVIDE(_esysev_inits_end = .);
}
}
INSERT AFTER .data;