diff options
author | Andreas Färber <afaerber@suse.de> | 2015-03-19 17:23:19 +0100 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2015-03-20 20:35:22 -0400 |
commit | b4581224824871ad2909f84fc4a9e067cda663f2 (patch) | |
tree | e5b42a1ab541d8685af736f6e018ec1370f025c7 /scripts | |
parent | 1317617687bf41085f13134f88cbeb6e31a5b125 (diff) | |
download | seabios-b4581224824871ad2909f84fc4a9e067cda663f2.tar.gz |
checkrom: Fix typo in error message
increate -> increase
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkrom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkrom.py b/scripts/checkrom.py index 377277db..aced5e2c 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.") |