Skip to content

Commit cee8ee7

Browse files
committed
Updated esptool.py and libssl.a
Signed-off-by: Mikhail Grigorev <[email protected]>
1 parent c13cd9f commit cee8ee7

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

Espressif/ESP8266_SDK/lib/libssl.a

48.2 KB
Binary file not shown.

Espressif/utils/esptool.exe

0 Bytes
Binary file not shown.

Espressif/utils/esptool.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def add_segment(self, addr, data):
385385
if l > 0:
386386
if l % 4:
387387
data += b"\x00" * (4 - l % 4)
388-
self.segments.append((addr, len(data), data))
388+
self.segments.append((addr, len(data), data))
389389

390390
def save(self, filename):
391391
f = file(filename, 'wb')
@@ -417,7 +417,7 @@ def _fetch_symbols(self):
417417
tool_nm = "C:\\Espressif\\xtensa-lx106-elf\\bin\\xtensa-lx106-elf-nm.exe"
418418
if os.getenv('XTENSA_CORE')=='lx106':
419419
tool_nm = "xt-nm"
420-
proc = subprocess.Popen([tool_nm, self.name], stdout=subprocess.PIPE)
420+
proc = subprocess.Popen([tool_nm, '-g', self.name], stdout=subprocess.PIPE)
421421
except OSError:
422422
print "Error calling "+tool_nm+", do you have Xtensa toolchain in PATH?"
423423
sys.exit(1)

Espressif/utils/library.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)