aboutsummaryrefslogtreecommitdiff
path: root/scripts/checkrom.py
AgeCommit message (Collapse)AuthorFilesLines
2021-12-19scripts: Remove python23compat.pyKevin O'Connor1-3/+1
It's simpler to use b"" designations around binary strings than to use the as_bytes() function. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2015-03-20checkrom: Fix typo in error messageAndreas Färber1-1/+1
increate -> increase Signed-off-by: Andreas Färber <afaerber@suse.de>
2014-05-27python3 fixes for vgabios and csm builds.rel-1.7.5Kevin O'Connor1-12/+8
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-1/+1
Signed-off-by: Johannes Krampf <johannes.krampf@googlemail.com>
2014-01-20build: Make print statements in scripts python3 compatible.Johannes Krampf1-13/+13
Signed-off-by: Johannes Krampf <johannes.krampf@googlemail.com>
2013-09-30build: explicitly set ROM sizeGerd Hoffmann1-6/+15
Add a config option to specify the rom size wanted. Default is zero, which will automatically figure the needed size. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2013-08-17Rename tools/ directory to scripts/ directory.Kevin O'Connor1-0/+88
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>