diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-25 10:55:43 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-25 10:57:10 +0100 |
commit | cd3225d84517d6fee1b75a5025362161640640ea (patch) | |
tree | 2f14a43e5eff6ded6da38f90ecbc3810fac1e575 | |
parent | 42c9d7d28c4b1988123fb29c7ebdf7f4893e46b1 (diff) |
update/project/trees: remove extra.sh handling
This functionality has never been used, except in the
erstwhile osboot project, and even then only experimentally.
It was intended for use with coreboot's gerrit site, but
it became Libreboot project policy that this not be relied
upon, instead preferring to include patches directly within
lbmk. This functionality can be re-added, if necessary.
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | script/update/project/trees | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/script/update/project/trees b/script/update/project/trees index 5c1609c3..6ce53250 100755 --- a/script/update/project/trees +++ b/script/update/project/trees @@ -157,13 +157,6 @@ prepare_new_tree() err "cannot patch: ${project}/${tree}" fi done - - # extra.sh can be used for anything - # but should *only* be a last resort - if [ -f "../../${cfgsdir}/${tree}/extra.sh" ]; then - "../../${cfgsdir}/${tree}/extra.sh" || \ - err "prepare_new_tree ${project}/${tree}: extra.sh: error" - fi ) } |