aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2015-03-19 17:23:19 +0100
committerKevin O'Connor <kevin@koconnor.net>2015-03-20 20:35:22 -0400
commitb4581224824871ad2909f84fc4a9e067cda663f2 (patch)
treee5b42a1ab541d8685af736f6e018ec1370f025c7 /scripts
parent1317617687bf41085f13134f88cbeb6e31a5b125 (diff)
downloadseabios-hppa-b4581224824871ad2909f84fc4a9e067cda663f2.zip
seabios-hppa-b4581224824871ad2909f84fc4a9e067cda663f2.tar.gz
seabios-hppa-b4581224824871ad2909f84fc4a9e067cda663f2.tar.bz2
checkrom: Fix typo in error message
increate -> increase Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkrom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkrom.py b/scripts/checkrom.py
index 377277d..aced5e2 100755
--- a/scripts/checkrom.py
+++ b/scripts/checkrom.py
@@ -39,7 +39,7 @@ def main():
finalsize = 256*1024
if datasize > finalsize:
print("Error! ROM doesn't fit (%d > %d)" % (datasize, finalsize))
- print(" You have to either increate the size (CONFIG_ROM_SIZE)")
+ print(" You have to either increase the size (CONFIG_ROM_SIZE)")
print(" or turn off some features (such as hardware support not")
print(" needed) to make it fit. Trying a more recent gcc version")
print(" might work too.")