Fix #! and exec bits for scripts

Signed-off-by: Witold Baryluk <witold.baryluk@gmail.com>
This commit is contained in:
Witold Baryluk 2021-02-05 09:30:43 +00:00 committed by Hector Martin
parent 8691fcee8a
commit 62db38ae91
10 changed files with 12 additions and 11 deletions

2
proxyclient/addrdump.py Normal file → Executable file
View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
import serial, os
from proxy import *

3
proxyclient/aic_test.py Normal file → Executable file
View file

@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python3
from setup import *
import asm

3
proxyclient/asm.py Normal file → Executable file
View file

@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os, tempfile, shutil, subprocess
class AsmException(Exception):

2
proxyclient/chainload.py Normal file → Executable file
View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
from setup import *

4
proxyclient/chickens.py Normal file → Executable file
View file

@ -1,7 +1,7 @@
#!/usr/bin/env python3
from setup import *
sys_regs = dict([
("HID0", (3, 0, 15, 0, 0)),
("HID1", (3, 0, 15, 1, 0)),

2
proxyclient/linux.py Normal file → Executable file
View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
from setup import *

View file

@ -1,5 +1,3 @@
#!/usr/bin/python
class Heap(object):
def __init__(self, start, end, block=64):
if start%block:

1
proxyclient/memdump.py Normal file → Executable file
View file

@ -1,3 +1,4 @@
#!/usr/bin/env python3
import sys
from setup import *

View file

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# SPDX-License-Identifier: MIT
import os, sys, struct

View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
import atexit, serial, os, struct, code, traceback, readline, rlcompleter
from proxy import *