change filemode, remove .exe extension

This commit is contained in:
Susis Strolch
2019-06-19 13:51:56 +02:00
parent 1df096dc5f
commit 98076f35a9
5 changed files with 2 additions and 2 deletions

0
scripts/analyze_stackdmp.py Normal file → Executable file
View File

0
scripts/checkcode.py Normal file → Executable file
View File

0
scripts/clean_fw.py Normal file → Executable file
View File

2
scripts/decoder.py Normal file → Executable file
View File

@@ -290,7 +290,7 @@ if __name__ == "__main__":
file = open(args.file, "r") file = open(args.file, "r")
addr2line = os.path.join(os.path.abspath(os.path.expanduser(args.tool)), addr2line = os.path.join(os.path.abspath(os.path.expanduser(args.tool)),
"bin/xtensa-" + PLATFORMS[args.platform] + "-elf-addr2line.exe") "bin/xtensa-" + PLATFORMS[args.platform] + "-elf-addr2line")
if not os.path.exists(addr2line): if not os.path.exists(addr2line):
print("ERROR: addr2line not found (" + addr2line + ")") print("ERROR: addr2line not found (" + addr2line + ")")

0
scripts/rename_fw.py Normal file → Executable file
View File