]> 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)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 4 Aug 2021 19:41:45 +0000 (20:41 +0100)
Signed-off-by: Matthias Klein <matthias@extraklein.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu

index 2914f15d06c7988b64a8711ce4c181d03c5711fb..9c92eec030b7acbcf379cc0dd020390d77f1eac4 100755 (executable)
@@ -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):