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:45:41 +0100
commit6d90c0e47a28647909bbe4c303e61e33952e0894 (patch)
tree9ac66019ace2f88a25a44463152264bd19ec43c2 /scripts
parentc568dd9799c9ee2efadffa05dbea93e9c2ed7051 (diff)
downloadpoky-6d90c0e47a28647909bbe4c303e61e33952e0894.tar.gz
runqemu: Fix typo in error message
(From OE-Core rev: 5cc0051d50974e198313f9513b24fd7ae9a96dd4) 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):
776 raise RunQemuError('BIOS not found: %s' % bios_match_name) 776 raise RunQemuError('BIOS not found: %s' % bios_match_name)
777 777
778 if not os.path.exists(self.bios): 778 if not os.path.exists(self.bios):
779 raise RunQemuError("KERNEL %s not found" % self.bios) 779 raise RunQemuError("BIOS %s not found" % self.bios)
780 780
781 781
782 def check_mem(self): 782 def check_mem(self):