summaryrefslogtreecommitdiff
path: root/include/git.sh
diff options
context:
space:
mode:
Diffstat (limited to 'include/git.sh')
-rw-r--r--include/git.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/git.sh b/include/git.sh
index 272a1af3..9be79527 100644
--- a/include/git.sh
+++ b/include/git.sh
@@ -66,6 +66,15 @@ git_prep()
mv "$tmpgit" "$_loc" || $err "git_prep: !mv $tmpgit $_loc"
}
+# return 0 if project is single-tree, otherwise 1
+# e.g. coreboot is multi-tree, so 1
+singletree()
+{
+ for targetfile in "config/${1}/"*/target.cfg; do
+ [ -e "$targetfile" ] && [ -f "$targetfile" ] && return 1; :
+ done; :
+}
+
fetch_submodule()
{
mcfgdir="$mdir/${1##*/}"; eval \