From 2579e05269a14b53a54232a8bf4414ac2dfe6472 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Sun, 18 Sep 2016 00:39:25 -0700 Subject: 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 Signed-off-by: Richard Purdie --- scripts/runqemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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): 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) -- cgit 1.2.3-korg