Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 1058d3b

Browse files
author
iwahdan88
committed
Firmware release candidate v1.20.0.rc6
Merge latest updates on IDF V3.1
1 parent bf11cc0 commit 1058d3b

38 files changed

+6
-2
lines changed

esp32/bootloader/esp32.bootloader.ld

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ SECTIONS
119119
.iram.text :
120120
{
121121
_stext = .;
122+
_loader_text_start = .;
122123
_text_start = ABSOLUTE(.);
123124
*(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
124125
*(.iram1 .iram1.*) /* catch stray IRAM_ATTR */
@@ -127,6 +128,7 @@ SECTIONS
127128
*(.gnu.version)
128129
_text_end = ABSOLUTE(.);
129130
_etext = .;
131+
_loader_text_end = .;
130132
} > iram_seg
131133

132134
}
12.8 KB
Binary file not shown.

esp32/bootloader/lib/liblog.a

0 Bytes
Binary file not shown.

esp32/bootloader/lib/libmicro-ecc.a

0 Bytes
Binary file not shown.

esp32/bootloader/lib/libsoc.a

712 Bytes
Binary file not shown.

esp32/bootloader/lib/libspi_flash.a

0 Bytes
Binary file not shown.

esp32/get_idf_libs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
import argparse
44
import shutil
5-
5+
import traceback
66

77

88
def main():
@@ -62,6 +62,7 @@ def main():
6262
shutil.copy(src + '/openthread/libopenthread.a', dsttmpapp)
6363
except:
6464
print("Couldn't Copy IDF libs defaulting to Local Lib Folders!")
65+
traceback.print_exc()
6566
shutil.rmtree(dsttmpbl)
6667
shutil.rmtree(dsttmpapp)
6768
return

esp32/lib/libbootloader_support.a

9.68 KB
Binary file not shown.

esp32/lib/libbt.a

6.66 KB
Binary file not shown.

esp32/lib/libcxx.a

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)