[OE-core] [PATCH] scripts/combo-layer: a simple way to script the como-layer conf

Leandro Dorileo ldorileo at gmail.com
Tue Aug 9 19:44:25 UTC 2011


This small patch introduces a a very simple and basic way to script
the combo-layer conf file. With that a combo can be shared with no
need to change its config - associated to the use of environment
variables for example.

*Similar* to bitbake it considers every value starting with @ to be
a python script. So local_repo could be easily configured as:

[bitbake]
local_repo = @os.getenv("LOCAL_REPO_DIR") + "/bitbake"

or any more sophisticated python syntax.

Signed-off-by: Leandro Dorileo <ldorileo at gmail.com>
---
 scripts/combo-layer |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/scripts/combo-layer b/scripts/combo-layer
index d129175..3dadf4a 100755
--- a/scripts/combo-layer
+++ b/scripts/combo-layer
@@ -91,6 +91,9 @@ last_revision =
         for repo in self.parser.sections():
             self.repos[repo] = {}
             for (name, value) in self.parser.items(repo):
+              if value.startswith("@"):
+                self.repos[repo][name] = eval(value.strip("@"))
+              else:
                 self.repos[repo][name] = value
 
     def update(self, repo, option, value):
-- 
1.7.2.5





More information about the Openembedded-core mailing list