aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Lock <joshua.g.lock@intel.com>2016-09-16 10:00:19 +0100
committerRobert Yang <liezhi.yang@windriver.com>2016-09-19 03:46:30 -0700
commitfb726845f070859d33f2c44bb7d8c3f05cc31556 (patch)
tree213cb585e7939d13ddd566e99e219f6a6aa318cc
parentf492d54928ebae7cf8acb176b17ae4cbc154a14b (diff)
downloadopenembedded-core-contrib-fb726845f070859d33f2c44bb7d8c3f05cc31556.tar.gz
runqemu: clarify an INFO message
Make it clearer that we are looking for a file which ends with qemuboot.conf Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index c71a47c7b8..6aaae44ea9 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -205,7 +205,7 @@ class BaseConfig(object):
def is_deploy_dir_image(self, p):
if os.path.isdir(p):
if not re.search('.qemuboot.conf$', '\n'.join(os.listdir(p)), re.M):
- logger.info("Can't find required qemuboot.conf in %s" % p)
+ logger.info("Can't find required *.qemuboot.conf in %s" % p)
return False
if not re.search('-image-', '\n'.join(os.listdir(p))):
logger.info("Can't find *-image-* in %s" % p)