aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/combo-layer13
1 files changed, 12 insertions, 1 deletions
diff --git a/scripts/combo-layer b/scripts/combo-layer
index d1291751fa..07b3382f0a 100755
--- a/scripts/combo-layer
+++ b/scripts/combo-layer
@@ -79,6 +79,14 @@ local_repo_dir = ~/src/oecore
dest_dir = .
last_revision =
+# it's also possible to embed python code in the config values. Similar
+# to bitbake it considers every value starting with @ to be a python script.
+# So local_repo could be easily configured using an environment variable as:
+#
+# [bitbake]
+# local_repo = @os.getenv("LOCAL_REPO_DIR") + "/bitbake"
+#
+
# more components ...
"""
@@ -91,7 +99,10 @@ last_revision =
for repo in self.parser.sections():
self.repos[repo] = {}
for (name, value) in self.parser.items(repo):
- self.repos[repo][name] = value
+ if value.startswith("@"):
+ self.repos[repo][name] = eval(value.strip("@"))
+ else:
+ self.repos[repo][name] = value
def update(self, repo, option, value):
self.parser.set(repo, option, value)