mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-22 09:47:28 +00:00
11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
/* Arduino fix: catch esp_event's orphaned .text.handler_execute section and align to 4 bytes */
|
|
SECTIONS
|
|
{
|
|
.text.handler_execute :
|
|
{
|
|
KEEP(*(.text.handler_execute))
|
|
KEEP(*(.text.handler_execute.*))
|
|
. = ALIGN(4);
|
|
}
|
|
}
|
|
INSERT AFTER .flash.text; |