diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-09-10 18:05:57 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-09-10 18:05:57 +0100 |
| commit | 8822c5681578dba7a0cbcf6df8a71c2da1301074 (patch) | |
| tree | b023005282923fcea799ac1e32218f5f95ff0bf2 /include | |
| parent | bb0221252c78f2dd7a5eeed45091baa79f7029ab (diff) | |
mk: make it completely generic
commands now fed from a file, include/common.sh
which in turn also includes other lib files
this makes mk completely generic, and means
that changes will now be completely in sync
with cbmk, ensuring a lack of merge conflicts,
though the file was already pretty small anyway.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/common.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/common.sh b/include/common.sh new file mode 100644 index 00000000..89a42073 --- /dev/null +++ b/include/common.sh @@ -0,0 +1,19 @@ +# SPDX-License-Identifier: GPL-3.0-or-later + +. "include/lib.sh" +. "include/init.sh" +. "include/vendor.sh" +. "include/mrc.sh" +. "include/inject.sh" +. "include/rom.sh" +. "include/release.sh" +. "include/get.sh" +. "include/chromebook.sh" + +xbcommands=" \ +version \ +release \ +download \ +inject \ +prep_mr_import \ +" |
