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-14 12:01:44 +0100
commit9e011511048afc12dd5335b7d074a8aedcb71e5a (patch)
tree0aac53eec9c0d9840c7487cee06b34db8afb8052 /scripts
parentfed15ba67d888c136ea0845e322aac5d89b3ce46 (diff)
downloadpoky-9e011511048afc12dd5335b7d074a8aedcb71e5a.tar.gz
runqemu: Fix typo in error message
(From OE-Core rev: f2f9eb53515c7f1890365aa6441f556fb862e429) Signed-off-by: Matthias Klein <matthias@extraklein.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 5cc0051d50974e198313f9513b24fd7ae9a96dd4) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> 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 c985f4e75a..f3527a4412 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -775,7 +775,7 @@ class BaseConfig(object):
775 raise RunQemuError('BIOS not found: %s' % bios_match_name) 775 raise RunQemuError('BIOS not found: %s' % bios_match_name)
776 776
777 if not os.path.exists(self.bios): 777 if not os.path.exists(self.bios):
778 raise RunQemuError("KERNEL %s not found" % self.bios) 778 raise RunQemuError("BIOS %s not found" % self.bios)
779 779
780 780
781 def check_mem(self): 781 def check_mem(self):