Acceptance tests: do not show canceled test logs on GitLab CI
[qemu/ar7.git] / scripts / signrom.py
blob43693dba56f7c28bb1072f0b3683e6552b8cf48e
1 #!/usr/bin/env python3
4 # Option ROM signing utility
6 # Authors:
7 # Jan Kiszka <jan.kiszka@siemens.com>
9 # This work is licensed under the terms of the GNU GPL, version 2 or later.
10 # See the COPYING file in the top-level directory.
12 import sys
13 import struct
15 if len(sys.argv) < 3:
16 print('usage: signrom.py input output')
17 sys.exit(1)
19 fin = open(sys.argv[1], 'rb')
20 fout = open(sys.argv[2], 'wb')
22 magic = fin.read(2)
23 if magic != b'\x55\xaa':
24 sys.exit("%s: option ROM does not begin with magic 55 aa" % sys.argv[1])
26 size_byte = ord(fin.read(1))
27 fin.seek(0)
28 data = fin.read()
30 size = size_byte * 512
31 if len(data) > size:
32 sys.stderr.write('error: ROM is too large (%d > %d)\n' % (len(data), size))
33 sys.exit(1)
34 elif len(data) < size:
35 # Add padding if necessary, rounding the whole input to a multiple of
36 # 512 bytes according to the third byte of the input.
37 # size-1 because a final byte is added below to store the checksum.
38 data = data.ljust(size-1, b'\0')
39 else:
40 if ord(data[-1:]) != 0:
41 sys.stderr.write('WARNING: ROM includes nonzero checksum\n')
42 data = data[:size-1]
44 fout.write(data)
46 checksum = 0
47 for b in data:
48 checksum = (checksum - b) & 255
50 fout.write(struct.pack('B', checksum))
52 fin.close()
53 fout.close()