summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
diff options
context:
space:
mode:
authorJoshua Lock <joshua.g.lock@intel.com>2016-09-18 00:39:25 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-20 15:11:07 +0100
commit0fd72474e7214994ead982742895e871c9dd92e3 (patch)
tree4b9606cdf611de67ee5456c4fed1c2f3c50ea4be /scripts/runqemu
parent7352d35d739acef65cfddc1923d34aa62c6f0f4c (diff)
downloadpoky-0fd72474e7214994ead982742895e871c9dd92e3.tar.gz
runqemu: clarify an INFO message
Make it clearer that we are looking for a file which ends with qemuboot.conf (From OE-Core rev: 2579e05269a14b53a54232a8bf4414ac2dfe6472) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 6526536c25..09fe7ceafd 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -205,7 +205,7 @@ class BaseConfig(object):
205 def is_deploy_dir_image(self, p): 205 def is_deploy_dir_image(self, p):
206 if os.path.isdir(p): 206 if os.path.isdir(p):
207 if not re.search('.qemuboot.conf$', '\n'.join(os.listdir(p)), re.M): 207 if not re.search('.qemuboot.conf$', '\n'.join(os.listdir(p)), re.M):
208 logger.info("Can't find required qemuboot.conf in %s" % p) 208 logger.info("Can't find required *.qemuboot.conf in %s" % p)
209 return False 209 return False
210 if not re.search('-image-', '\n'.join(os.listdir(p))): 210 if not re.search('-image-', '\n'.join(os.listdir(p))):
211 logger.info("Can't find *-image-* in %s" % p) 211 logger.info("Can't find *-image-* in %s" % p)