diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-09-13 22:25:15 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-09-13 22:25:15 +0100 |
| commit | dcaa15ab01952b9eccfc906b2250721d9d22d891 (patch) | |
| tree | afa10c284d7bc3ab2a205ec5d34cffd7fe607711 | |
| parent | f5f6464c6076ab6518b20590470f5ab8f1612454 (diff) | |
common.h: re-order includes
the new order more reliably indicates which order
everything is executed in, by virtue of the functions
provided in each file.
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | include/common.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/common.sh b/include/common.sh index 7ace6ec7..9861fc16 100644 --- a/include/common.sh +++ b/include/common.sh @@ -2,12 +2,16 @@ . "include/lib.sh" . "include/env/init.sh" +. "include/env/get.sh" + . "include/fw/vendor.sh" . "include/fw/mrc.sh" . "include/fw/inject.sh" . "include/fw/rom.sh" + . "include/mk/release.sh" -. "include/env/get.sh" + +# tree.sh is included from the main mk script xbcommands=" \ version \ |
