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-02 05:54:36 +0100
commit2ae565ba93a84add3dd891e31e894d61cd4be42b (patch)
treef9f42776a61cb0e1d77f9f827e587b580f292d90 /mk
parentc073ee9d4fc4a631c16ff681bb62c29b952878ba (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"