aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/buildrom.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-08-17 10:13:14 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-08-17 10:23:46 -0400
commitb942ce0a03a8b83c4b52e8af5d649b3661034a2d (patch)
treed0625ea547ceba4b857d8ddc1502c5f33c60c3fb /scripts/buildrom.py
parent915f64aee37159d21760d44cdc5778220468fe0b (diff)
downloadseabios-b942ce0a03a8b83c4b52e8af5d649b3661034a2d.tar.gz
Rename tools/ directory to scripts/ directory.
It's common for other projects (eg, QEMU, Linux) to put build scripts into a "scripts/" directory. There's no reason for SeaBIOS to be different, so rename the "tools/" directory to "scripts/". Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/buildrom.py')
-rwxr-xr-xscripts/buildrom.py50
1 files changed, 50 insertions, 0 deletions
diff --git a/scripts/buildrom.py b/scripts/buildrom.py
new file mode 100755
index 00000000..f2228ab9
--- /dev/null
+++ b/scripts/buildrom.py
@@ -0,0 +1,50 @@
+#!/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()
+ f.close()
+ count = len(data)
+
+ # Pad to a 512 byte boundary
+ data += "\0" * (alignpos(count, 512) - count)
+ count = len(data)
+
+ # Check if a pci header is present
+ pcidata = ord(data[24:25]) + (ord(data[25:26]) << 8)
+ if pcidata != 0:
+ data = data[:pcidata + 16] + chr(count/512) + chr(0) + data[pcidata + 18:]
+
+ # 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)
+ f.close()
+
+if __name__ == '__main__':
+ main()