summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMatthias Klein <matthias@extraklein.de>2021-08-04 10:53:39 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-04 20:41:45 +0100
commit5cc0051d50974e198313f9513b24fd7ae9a96dd4 (patch)
tree8b103fce92f2bf78b41062711aa9c7e9952aaa2f /scripts
parent3eb580843de3f055e42fcce60b0f15c4190c0542 (diff)
downloadopenembedded-core-5cc0051d50974e198313f9513b24fd7ae9a96dd4.tar.gz
runqemu: Fix typo in error message
Signed-off-by: Matthias Klein <matthias@extraklein.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 2914f15d06..9c92eec030 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -776,7 +776,7 @@ class BaseConfig(object):
raise RunQemuError('BIOS not found: %s' % bios_match_name)
if not os.path.exists(self.bios):
- raise RunQemuError("KERNEL %s not found" % self.bios)
+ raise RunQemuError("BIOS %s not found" % self.bios)
def check_mem(self):