[OE-core] [PATCH] scripts/combo-layer: checkout branch in update when pull is disabled

Paul Eggleton paul.eggleton at linux.intel.com
Tue Aug 21 10:40:55 UTC 2012


If the user selects not to pull the component repos, at least ensure
that the correct branch is checked out before proceeding.

Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
---
 scripts/combo-layer |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/combo-layer b/scripts/combo-layer
index 448fe71..6134e81 100755
--- a/scripts/combo-layer
+++ b/scripts/combo-layer
@@ -356,6 +356,10 @@ def action_update(conf, args):
         branch = repo.get('branch', "master")
         repo_patch_dir = os.path.join(os.getcwd(), patch_dir, name)
 
+        if conf.nopull:
+            # Need to do this here as we didn't call action_pull that would do it otherwise
+            runcmd("git checkout %s" % branch, ldir)
+
         # Step 2: generate the patch list and store to patch dir
         logger.info("Generating patches from %s..." % name)
         if dest_dir != ".":
-- 
1.7.9.5





More information about the Openembedded-core mailing list