]> 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)
committerSteve Sakoman <steve@sakoman.com>
Mon, 16 Aug 2021 14:41:07 +0000 (04:41 -1000)
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: Steve Sakoman <steve@sakoman.com>
scripts/runqemu

index 63e533a93473b36d631cc04ac2b4f3e4fea32776..10880ba6bb45da3b4c8f8cbbe1c1887afe08ab34 100755 (executable)
@@ -764,7 +764,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):