summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-06 22:17:16 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-06 22:17:16 +0100
commitd41658f17ec7c0bc62d0ac3e46ea2928f8bfdaf3 (patch)
tree765609135a6ca7d8891e6ce0eb8a13386dd6965b
parentc0822ac458fc7b0f2630c1cff208bd5066efbc6b (diff)
move handle_coreboot_utils to script/trees
it doesn't really make sense placed in lib.sh, because it's only called from script/trees Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-xinclude/lib.sh16
-rwxr-xr-xscript/trees18
2 files changed, 17 insertions, 17 deletions
diff --git a/include/lib.sh b/include/lib.sh
index eed75e2a..4ae4ad5b 100755
--- a/include/lib.sh
+++ b/include/lib.sh
@@ -154,22 +154,6 @@ check_defconfig()
done
}
-handle_coreboot_utils()
-{
- for util in cbfstool ifdtool; do
- utilelfdir="elf/$util/$1"
- utilsrcdir="src/coreboot/$1/util/$util"
-
- utilmode=""
- [ -z "$mode" ] || utilmode="clean"
- x_ make -C "$utilsrcdir" $utilmode
- [ -z "$mode" ] && [ ! -f "$utilelfdir/$util" ] && \
- x_ mkdir -p "$utilelfdir" && \
- x_ cp "$utilsrcdir/$util" "elf/$util/$1"
- [ -z "$mode" ] || x_ rm -Rf "$utilelfdir"
- done
-}
-
remkdir()
{
rm -Rf "$1" || $err "remkdir: !rm -Rf \"$1\""
diff --git a/script/trees b/script/trees
index c806b92a..36cf48e4 100755
--- a/script/trees
+++ b/script/trees
@@ -105,7 +105,7 @@ handle_defconfig()
handle_src_tree "$target" || return 0
[ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && \
- eval "handle_coreboot_utils \"$tree\"; return 0"
+ eval "check_coreboot_utils \"$tree\"; return 0"
for y in "$target_dir/config"/*; do
[ -f "$y" ] || continue
@@ -171,6 +171,22 @@ check_cross_compiler()
done
}
+check_coreboot_utils()
+{
+ for util in cbfstool ifdtool; do
+ utilelfdir="elf/$util/$1"
+ utilsrcdir="src/coreboot/$1/util/$util"
+
+ utilmode=""
+ [ -z "$mode" ] || utilmode="clean"
+ x_ make -C "$utilsrcdir" $utilmode
+ [ -z "$mode" ] && [ ! -f "$utilelfdir/$util" ] && \
+ x_ mkdir -p "$utilelfdir" && \
+ x_ cp "$utilsrcdir/$util" "elf/$util/$1"
+ [ -z "$mode" ] || x_ rm -Rf "$utilelfdir"
+ done
+}
+
check_config()
{
[ -f "$config" ] || $err "check_config $project/$target: no config"