summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/runqemu7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 2ab36fd03d..f189dbfb60 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -368,12 +368,13 @@ class BaseConfig(object):
368 - Check whether it is an NFS dir 368 - Check whether it is an NFS dir
369 - Check whether it is an OVMF flash file 369 - Check whether it is an OVMF flash file
370 """ 370 """
371 n = os.path.basename(p)
371 if p.endswith('.qemuboot.conf'): 372 if p.endswith('.qemuboot.conf'):
372 self.qemuboot = p 373 self.qemuboot = p
373 self.qbconfload = True 374 self.qbconfload = True
374 elif re.search('\\.bin$', p) or re.search('bzImage', p) or \ 375 elif re.search('\\.bin$', n) or re.search('bzImage', n) or \
375 re.search('zImage', p) or re.search('vmlinux', p) or \ 376 re.search('zImage', n) or re.search('vmlinux', n) or \
376 re.search('fitImage', p) or re.search('uImage', p): 377 re.search('fitImage', n) or re.search('uImage', n):
377 self.kernel = p 378 self.kernel = p
378 elif os.path.isfile(p) and ('-image-' in os.path.basename(p) or '.rootfs.' in os.path.basename(p)): 379 elif os.path.isfile(p) and ('-image-' in os.path.basename(p) or '.rootfs.' in os.path.basename(p)):
379 self.rootfs = p 380 self.rootfs = p