mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 14:02:52 +02:00
git.sh: support downloading dependency trees
a tree can specify: tree_depend="treename" this will make the other tree be downloaded. this is used for coreboot trees, to ensure that dependency trees are downloaded, because trees can now re-use crossgcc from other trees. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+3
-1
@@ -4,7 +4,7 @@
|
||||
|
||||
# This file is only used by update/project/trees
|
||||
|
||||
eval "$(setvars "" _target rev _xm loc url bkup_url depend xtree)"
|
||||
eval "$(setvars "" _target rev _xm loc url bkup_url depend tree_depend xtree)"
|
||||
|
||||
fetch_project_trees()
|
||||
{
|
||||
@@ -37,6 +37,8 @@ fetch_config()
|
||||
[ "${_target}" = "${tree}" ] && break
|
||||
_target="${tree}"
|
||||
done
|
||||
[ -n "$tree_depend" ] && [ "$tree_depend" != "$tree" ] && \
|
||||
x_ update trees -f "$project" "$tree_depend"; return 0
|
||||
}
|
||||
|
||||
load_target_config()
|
||||
|
||||
Reference in New Issue
Block a user