summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/runqemu4
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