]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu: fix 2 typos
authorRobert Yang <liezhi.yang@windriver.com>
Thu, 6 Apr 2017 06:41:33 +0000 (23:41 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 6 Apr 2017 11:06:54 +0000 (12:06 +0100)
* "is it" -> "it is"
* Remove "<image>.qemuboot.conf =" in the error message which looked strange.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu

index 23c9efbae27c82e01165f45700b995e698314cb9..251f5f7e940ae6adfd60d5f4a80f393ec71fabc3 100755 (executable)
@@ -421,7 +421,7 @@ class BaseConfig(object):
             elif arg.startswith('ovmf'):
                 self.ovmf_bios.append(arg)
             else:
-                # At last, assume is it the MACHINE
+                # At last, assume it is the MACHINE
                 if (not unknown_arg) or unknown_arg == arg:
                     unknown_arg = arg
                 else:
@@ -677,7 +677,7 @@ class BaseConfig(object):
             return
 
         if not os.path.exists(self.qemuboot):
-            raise Exception("Failed to find <image>.qemuboot.conf = %s (wrong image name or BSP does not support running under qemu?)." % self.qemuboot)
+            raise Exception("Failed to find %s (wrong image name or BSP does not support running under qemu?)." % self.qemuboot)
 
         logger.info('CONFFILE: %s' % self.qemuboot)