diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-27 21:46:20 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-27 22:31:24 +0100 |
commit | 74c48a881df378a83e261c2785012609d81d801e (patch) | |
tree | 52dcd41154762a823bf1d5d06c7a788536aea874 /script/update/blobs | |
parent | a00b43375a7d4a33b6569c0b6ccb9e9291877bb5 (diff) |
move build/command/options to include/option.sh
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/update/blobs')
-rwxr-xr-x | script/update/blobs/inject | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/update/blobs/inject b/script/update/blobs/inject index c2f9ead6..d4a8d1aa 100755 --- a/script/update/blobs/inject +++ b/script/update/blobs/inject @@ -7,6 +7,7 @@ . "include/err.sh" . "include/defconfig.sh" . "include/blobutil.sh" +. "include/option.sh" release_archive="n" @@ -16,7 +17,7 @@ main() [ $# -lt 1 ] && err "No options specified." [ "${1}" = "listboards" ] && \ - ./build command options config/coreboot && exit 0 + listitems config/coreboot && exit 0 archive="${1}" |