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>
This commit is contained in:
Matthias Klein
2021-08-04 10:53:39 +02:00
committed by Richard Purdie
parent c568dd9799
commit 6d90c0e47a

View File

@@ -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):