summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-02 05:54:36 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-05 12:18:22 +0100
commit73bd02e304b5314f4bbe5ff82a9295a99d98c70b (patch)
tree9a8b648ea526f9ab210471c71d767e2208321064 /mk
parent87f1a8d0da9e312efd21ca727048579b1f672480 (diff)
init.sh: move setvars/err_ to lib.sh
these functions make more sense in lib.sh i made mk link lib.sh first, so that the functions on init.sh can still use them. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'mk')
-rwxr-xr-xmk3
1 files changed, 2 insertions, 1 deletions
diff --git a/mk b/mk
index 7b4d69ae..0ae35b6d 100755
--- a/mk
+++ b/mk
@@ -12,8 +12,9 @@ if [ "./${0##*/}" != "${0}" ] || [ ! -f "mk" ] || [ -L "mk" ]; then
exit 1
fi
-. "include/init.sh"
. "include/lib.sh"
+
+. "include/init.sh"
. "include/inject.sh"
. "include/mrc.sh"