diff options
| author | Matthias Klein <matthias@extraklein.de> | 2021-08-04 10:53:39 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-18 18:00:19 +0100 |
| commit | 48d80a80a984dff7635504675e3ec6f3ff758996 (patch) | |
| tree | e7b7fe9f74fb31fcedc552953f4ff9eeb08b6ae6 | |
| parent | 922fe187e1914410faa4d78482b05c6ed7870b1a (diff) | |
| download | poky-48d80a80a984dff7635504675e3ec6f3ff758996.tar.gz | |
runqemu: Fix typo in error message
(From OE-Core rev: 0d14ade2ba75e6e918a5d7e84ac27830a8548a42)
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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rwxr-xr-x | scripts/runqemu | 2 |
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): | |||
| 764 | raise RunQemuError('BIOS not found: %s' % bios_match_name) | 764 | raise RunQemuError('BIOS not found: %s' % bios_match_name) |
| 765 | 765 | ||
| 766 | if not os.path.exists(self.bios): | 766 | if not os.path.exists(self.bios): |
| 767 | raise RunQemuError("KERNEL %s not found" % self.bios) | 767 | raise RunQemuError("BIOS %s not found" % self.bios) |
| 768 | 768 | ||
| 769 | 769 | ||
| 770 | def check_mem(self): | 770 | def check_mem(self): |
