1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-05-11 03:18:45 +00:00

fix python shebangs

This commit is contained in:
Pavol Rusnak 2016-05-24 20:31:01 +02:00
parent 94b6733a6e
commit c691f9b5e9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
7 changed files with 7 additions and 10 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python2
bl = open('bl.bin').read() bl = open('bl.bin').read()
fw = open('fw.bin').read() fw = open('fw.bin').read()
combined = bl + fw[:256] + (32768-256)*'\x00' + fw[256:] combined = bl + fw[:256] + (32768-256)*'\x00' + fw[256:]

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python2
import sys import sys
import os import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python2
import argparse import argparse
import hashlib import hashlib
import struct import struct

View File

@ -1,5 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python2
import hashlib import hashlib
import os import os
import subprocess import subprocess

View File

@ -1,5 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python2
import glob import glob
import os import os
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python2
from PIL import Image from PIL import Image
class Img(object): class Img(object):

View File

@ -1,5 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python2
handlers = [ handlers = [
'hard_fault_handler', 'hard_fault_handler',
'mem_manage_handler', 'mem_manage_handler',