From 2dcd1f2a21ab430c08a27d95e6ea9cddfe88ec30 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Tue, 4 May 2021 22:30:20 -0400 Subject: yocto-check-layer: Only note a layer without a conf/layer.conf (versus error) Dynamic layers may have a conf directory, but don't need (or want) a conf/layer.conf This isn't an error, so we can just log it and indicate the layer is being skipped. A full layer without a conf file isn't all that useable, so we aren't letting anything subtle slip through by just logging it. (From OE-Core rev: 9841a7c70bc21c5cd3bbea98d5f8654434577f61) Signed-off-by: Bruce Ashfield Signed-off-by: Richard Purdie --- scripts/yocto-check-layer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/yocto-check-layer b/scripts/yocto-check-layer index deba3cb4f8..44e77b73d0 100755 --- a/scripts/yocto-check-layer +++ b/scripts/yocto-check-layer @@ -112,7 +112,7 @@ def main(): % layer['name']) layers.remove(layer) elif layer['type'] == LayerType.ERROR_NO_LAYER_CONF: - logger.error("%s: Don't have conf/layer.conf file."\ + logger.info("%s: Doesn't have conf/layer.conf file, so ignoring"\ % layer['name']) layers.remove(layer) else: -- cgit v1.2.3-54-g00ecf