summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMatthias Klein <matthias@extraklein.de>2021-08-04 10:53:39 +0200
committerSteve Sakoman <steve@sakoman.com>2021-08-16 04:41:07 -1000
commit0d14ade2ba75e6e918a5d7e84ac27830a8548a42 (patch)
tree9f15cb050c1b334c0bbe4e26affddfe1d5cb1a0b /scripts
parent3a16f312e5942e8a3d6f77a550c5374da81eed37 (diff)
downloadopenembedded-core-0d14ade2ba75e6e918a5d7e84ac27830a8548a42.tar.gz
runqemu: Fix typo in error message
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>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 63e533a934..10880ba6bb 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -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):