diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-05-14 19:01:39 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-05-14 19:01:39 -0400 |
commit | 32da6a697f13a06d74968125fbe45c3ae2fb0164 (patch) | |
tree | 9bfd7bc801ef76880ca1de14edbcbe0b854382bf /tools | |
parent | a5288ffc77f540ab75b801882ff675415d7248f2 (diff) | |
download | seabios-32da6a697f13a06d74968125fbe45c3ae2fb0164.tar.gz |
Add missing tools/buildrom.py script.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/buildrom.py | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tools/buildrom.py b/tools/buildrom.py new file mode 100755 index 00000000..19b715ad --- /dev/null +++ b/tools/buildrom.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python +# Fill in checksum/size of an option rom, and pad it to proper length. +# +# Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net> +# +# This file may be distributed under the terms of the GNU GPLv3 license. + +import sys + +def alignpos(pos, alignbytes): + mask = alignbytes - 1 + return (pos + mask) & ~mask + +def checksum(data): + ords = map(ord, data) + return sum(ords) + +def main(): + inname = sys.argv[1] + outname = sys.argv[2] + + # Read data in + f = open(inname, 'rb') + data = f.read() + count = len(data) + + # Pad to a 512 byte boundary + data += "\0" * (alignpos(count, 512) - count) + count = len(data) + + # Fill in size field; clear checksum field + data = data[:2] + chr(count/512) + data[3:6] + "\0" + data[7:] + + # Checksum rom + newsum = (256 - checksum(data)) & 0xff + data = data[:6] + chr(newsum) + data[7:] + + # Write new rom + f = open(outname, 'wb') + f.write(data) + +if __name__ == '__main__': + main() |