aboutsummaryrefslogtreecommitdiff
path: root/scripts/buildrom.py
AgeCommit message (Collapse)AuthorFilesLines
2014-05-27python3 fixes for vgabios and csm builds.rel-1.7.5Kevin O'Connor1-7/+11
Avoid using chr() as this produces unicode strings on python3. Make sure to only use ord() on slices as the python3 bytearray type returns an integer on a non-slice array access. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2014-01-20build: Be careful with unicode and byte strings for python3 compatibility.Johannes Krampf1-2/+4
Signed-off-by: Johannes Krampf <johannes.krampf@googlemail.com>
2014-01-20build: Be explicit that we want integers when dividing for python3 compat.Johannes Krampf1-2/+2
Signed-off-by: Johannes Krampf <johannes.krampf@googlemail.com>
2013-08-17Rename tools/ directory to scripts/ directory.Kevin O'Connor1-0/+50
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>