aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkrom.py
Commit message (Collapse)AuthorAgeFilesLines
* checkrom: Fix typo in error messageAndreas Färber2015-03-201-1/+1
| | | | | | increate -> increase Signed-off-by: Andreas Färber <afaerber@suse.de>
* python3 fixes for vgabios and csm builds.Kevin O'Connor2014-05-271-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>
* build: Be careful with unicode and byte strings for python3 compatibility.Johannes Krampf2014-01-201-2/+4
| | | | Signed-off-by: Johannes Krampf <johannes.krampf@googlemail.com>
* build: Be explicit that we want integers when dividing for python3 compat.Johannes Krampf2014-01-201-1/+1
| | | | Signed-off-by: Johannes Krampf <johannes.krampf@googlemail.com>
* build: Make print statements in scripts python3 compatible.Johannes Krampf2014-01-201-13/+13
| | | | Signed-off-by: Johannes Krampf <johannes.krampf@googlemail.com>
* build: explicitly set ROM sizeGerd Hoffmann2013-09-301-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>
* Rename tools/ directory to scripts/ directory.Kevin O'Connor2013-08-171-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>