mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-02-16 13:48:29 +00:00
Fix #! and exec bits for scripts
Signed-off-by: Witold Baryluk <witold.baryluk@gmail.com>
This commit is contained in:
parent
8691fcee8a
commit
62db38ae91
10 changed files with 12 additions and 11 deletions
2
proxyclient/addrdump.py
Normal file → Executable file
2
proxyclient/addrdump.py
Normal file → Executable 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
3
proxyclient/aic_test.py
Normal file → Executable 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
3
proxyclient/asm.py
Normal file → Executable 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
2
proxyclient/chainload.py
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from setup import *
|
||||
|
||||
|
|
4
proxyclient/chickens.py
Normal file → Executable file
4
proxyclient/chickens.py
Normal file → Executable 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
2
proxyclient/linux.py
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from setup import *
|
||||
|
||||
|
|
|
@ -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
1
proxyclient/memdump.py
Normal file → Executable file
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
from setup import *
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
import os, sys, struct
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import atexit, serial, os, struct, code, traceback, readline, rlcompleter
|
||||
from proxy import *
|
||||
|
|
Loading…
Add table
Reference in a new issue