Explorar el Código

Improve python tools' shebang

Most OS don't have python3 in /usr/bin/python...
pull/75/head
Virgil Dupras hace 4 años
padre
commit
f395297874
Se han modificado 3 ficheros con 3 adiciones y 3 borrados
  1. +1
    -1
      tools/blkdump.py
  2. +1
    -1
      tools/memdump.py
  3. +1
    -1
      tools/upload.py

+ 1
- 1
tools/blkdump.py Ver fichero

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

# Read specified number of bytes in specified blkdev ID and spit it to stdout.
# The proper blkdev has to be selected and placed already.


+ 1
- 1
tools/memdump.py Ver fichero

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

# Read specified number of bytes at specified memory address and dump it to
# stdout.


+ 1
- 1
tools/upload.py Ver fichero

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

# Push specified file to specified device and verify that the contents is
# correct by sending a "peek" command afterwards and check the output. Errors


Cargando…
Cancelar
Guardar