xbmk: remove xbloc, re-use xbtmp instead

we no longer separate them. xbloc was the on-disk
tmp directory, whereas xbtmp used to be in /tmp
which we assumed to be tmpfs (it may not be, but
often is on many workstation setups - and our
documentation recommended doing this).

as mentioned in the previous commit, benchmarking
shows little speed difference using tmpfs /tmp
versus on-disk /tmp, for our purposes at least.
therefore, the handling of tmp files is being
greatly simplified.

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-09-02 06:08:57 +01:00
parent 64b69907ab
commit 0d107ad872
5 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
eval "`setvars "" loc url bkup_url subcurl subhash subgit subgit_bkup \
depend subcurl_bkup`"
tmpgit="$xbloc/gitclone"
tmpgit="$xbtmp/gitclone"
tmpgitcache="$XBMK_CACHE/tmpgit"
fetch_targets()