diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2017-04-05 23:41:33 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-10 23:00:42 +0100 |
commit | c70a74402f174a3a214f63762ca481bcbad1525c (patch) | |
tree | cd9b453c16de8a65d8e1ce9bc7d6f0f954d50159 /scripts | |
parent | b372e85d9b41ab8ceb4695c223fdf4c35913323b (diff) | |
download | poky-c70a74402f174a3a214f63762ca481bcbad1525c.tar.gz |
runqemu: fix 2 typos
* "is it" -> "it is"
* Remove "<image>.qemuboot.conf =" in the error message which looked strange.
(From OE-Core rev: a6152dd9f6f4e17855548ceffa8d864855a67f5c)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 23c9efbae2..251f5f7e94 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -421,7 +421,7 @@ class BaseConfig(object): | |||
421 | elif arg.startswith('ovmf'): | 421 | elif arg.startswith('ovmf'): |
422 | self.ovmf_bios.append(arg) | 422 | self.ovmf_bios.append(arg) |
423 | else: | 423 | else: |
424 | # At last, assume is it the MACHINE | 424 | # At last, assume it is the MACHINE |
425 | if (not unknown_arg) or unknown_arg == arg: | 425 | if (not unknown_arg) or unknown_arg == arg: |
426 | unknown_arg = arg | 426 | unknown_arg = arg |
427 | else: | 427 | else: |
@@ -677,7 +677,7 @@ class BaseConfig(object): | |||
677 | return | 677 | return |
678 | 678 | ||
679 | if not os.path.exists(self.qemuboot): | 679 | if not os.path.exists(self.qemuboot): |
680 | raise Exception("Failed to find <image>.qemuboot.conf = %s (wrong image name or BSP does not support running under qemu?)." % self.qemuboot) | 680 | raise Exception("Failed to find %s (wrong image name or BSP does not support running under qemu?)." % self.qemuboot) |
681 | 681 | ||
682 | logger.info('CONFFILE: %s' % self.qemuboot) | 682 | logger.info('CONFFILE: %s' % self.qemuboot) |
683 | 683 | ||