]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu: Fix typo in error message
authorMatthias Klein <matthias@extraklein.de>
Wed, 4 Aug 2021 08:53:39 +0000 (10:53 +0200)
committerAnuj Mittal <anuj.mittal@intel.com>
Mon, 9 Aug 2021 02:19:38 +0000 (10:19 +0800)
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>
scripts/runqemu

index c985f4e75a523988e2f5c55bac4edfc5b1fcb431..f3527a44127af62dc0b091cd23470d5080e87596 100755 (executable)
@@ -775,7 +775,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):