From: Matthias Klein Date: Wed, 4 Aug 2021 08:53:39 +0000 (+0200) Subject: runqemu: Fix typo in error message X-Git-Tag: yocto-4.0~2716 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5cc0051d50974e198313f9513b24fd7ae9a96dd4;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git runqemu: Fix typo in error message Signed-off-by: Matthias Klein Signed-off-by: Richard Purdie --- diff --git a/scripts/runqemu b/scripts/runqemu index 2914f15d06c..9c92eec030b 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):