While trying to check out a tree without devices I discovered that the seandroid local_manifest.xml does not include groups, so using repo init -gdefault,-device had not effect. Something like the attached fixes the situation (there are other groups, such as pdk that would apply to other projects that I did not add).

This is relative to the seandroid-4.3_r3 branch.

>From 9362c21a7c09f644bbc9936e3baa6094ad025b57 Mon Sep 17 00:00:00 2001
From: Joshua Brindle <[email protected]>
Date: Tue, 15 Oct 2013 17:50:53 -0400
Subject: [PATCH] add groups to device repos so that repo init -g operates
 correctly

---
 local_manifest.xml |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/local_manifest.xml b/local_manifest.xml
index 4a0f5a5..da8557c 100644
--- a/local_manifest.xml
+++ b/local_manifest.xml
@@ -4,10 +4,10 @@
 
   <project path="packages/apps/SEAdmin" remote="bitbucket" 
name="packages-apps-seandroidadmin" revision="seandroid-4.3"/>
 
-  <project path="kernel/goldfish" remote="bitbucket" name="kernel-goldfish" 
revision="seandroid-goldfish-3.4"/>
-  <project path="kernel/omap" remote="bitbucket" name="kernel-omap" 
revision="seandroid-omap-tuna-3.0-jb-mr2"/>
-  <project path="kernel/msm" remote="bitbucket" name="kernel-msm" 
revision="seandroid-msm-mako-3.4-jb-mr2"/>
-  <project path="kernel/exynos" remote="bitbucket" name="kernel-exynos" 
revision="seandroid-exynos-manta-3.4-jb-mr2"/>
+  <project path="kernel/goldfish" remote="bitbucket" name="kernel-goldfish" 
revision="seandroid-goldfish-3.4" groups="device" />
+  <project path="kernel/omap" remote="bitbucket" name="kernel-omap" 
revision="seandroid-omap-tuna-3.0-jb-mr2" groups="device,tuna" />
+  <project path="kernel/msm" remote="bitbucket" name="kernel-msm" 
revision="seandroid-msm-mako-3.4-jb-mr2" groups="device" />
+  <project path="kernel/exynos" remote="bitbucket" name="kernel-exynos" 
revision="seandroid-exynos-manta-3.4-jb-mr2" groups="device" />
 
   <remove-project name="platform/build"/>
   <project path="build" remote="bitbucket" name="build" 
revision="seandroid-4.3_r3">
@@ -33,12 +33,12 @@
   <project path="packages/apps/Settings" remote="bitbucket" 
name="packages-apps-settings" revision="seandroid-4.3_r3"/>
 
   <remove-project name="device/samsung/tuna"/>
-  <project path="device/samsung/tuna" remote="bitbucket" 
name="device-samsung-tuna" revision="seandroid-4.3" />
+  <project path="device/samsung/tuna" remote="bitbucket" 
name="device-samsung-tuna" revision="seandroid-4.3" groups="device,tuna"  />
 
   <remove-project name="device/samsung/manta"/>
-  <project path="device/samsung/manta" remote="bitbucket" 
name="device-samsung-manta" revision="seandroid-4.3" />
+  <project path="device/samsung/manta" remote="bitbucket" 
name="device-samsung-manta" revision="seandroid-4.3" groups="device,manta"  />
 
   <remove-project name="device/lge/mako"/>
-  <project path="device/lge/mako" remote="bitbucket" name="device-lge-mako" 
revision="seandroid-4.3_r3" />
+  <project path="device/lge/mako" remote="bitbucket" name="device-lge-mako" 
revision="seandroid-4.3_r3" groups="device,mako"  />
 
 </manifest>
-- 
1.7.9.5

Reply via email to