From aa1844e847a5f5f5ba36bfbf7bfc986de0913c57 Mon Sep 17 00:00:00 2001 From: "Alexander D. Kanevskiy" Date: Fri, 16 Oct 2015 18:49:21 +0300 Subject: combo-layer: introduce ability to exclude component from mass update There is no ability at the moment for situations where users would like to keep section in combo-layer.conf but don't update it, unless explicitly specified. Now, by adding "update = no" to desired section would exclude that repository from "combo-layer update" command. It is still possible to explicitly update it by "combo-layer update $section". By default, all repositories are assumed as "update = yes" (From OE-Core rev: 74ecf1a0e5c8230e55cb1a309f711d98fa63ce79) Signed-off-by: Alexander D. Kanevskiy Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- scripts/combo-layer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/combo-layer') diff --git a/scripts/combo-layer b/scripts/combo-layer index 7435a176be..92c5cbb813 100755 --- a/scripts/combo-layer +++ b/scripts/combo-layer @@ -73,7 +73,7 @@ class Configuration(object): else: # Apply special type transformations for some properties. # Type matches the RawConfigParser.get*() methods. - types = {'signoff': 'boolean'} + types = {'signoff': 'boolean', 'update': 'boolean'} if name in types: value = getattr(parser, 'get' + types[name])(section, name) self.repos[repo][name] = value @@ -567,7 +567,7 @@ def get_repos(conf, repo_names): sys.exit(1) if not repos: - repos = conf.repos + repos = [ repo for repo in conf.repos if conf.repos[repo].get("update", True) ] return repos -- cgit v1.2.3-54-g00ecf