summaryrefslogtreecommitdiff
path: root/resources/scripts/update/blobs
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-08-17 11:55:38 +0100
committerLeah Rowe <leah@libreboot.org>2023-08-17 11:56:17 +0100
commit63b0e99f6c4184466b33b166d1558c9b8b5c8702 (patch)
tree20cdcdccc0108fe9181c13c498f231bc11211373 /resources/scripts/update/blobs
parent0848622799b8c627cd650d848ffa7d592d80b26d (diff)
don't call blobutil directly from lbmk
it's bloat, and was only there for backwards compatibility with the old commands, but the new commands are e.g. ./update blobs inject instead of: ./blobutil inject this results in a slight code size reduction in lbmk Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources/scripts/update/blobs')
-rwxr-xr-xresources/scripts/update/blobs/download2
-rwxr-xr-xresources/scripts/update/blobs/extract4
-rwxr-xr-xresources/scripts/update/blobs/inject8
3 files changed, 7 insertions, 7 deletions
diff --git a/resources/scripts/update/blobs/download b/resources/scripts/update/blobs/download
index 0a28778a..a79fbad5 100755
--- a/resources/scripts/update/blobs/download
+++ b/resources/scripts/update/blobs/download
@@ -386,7 +386,7 @@ extract_ec()
if [ ! -f ec.bin ]; then
printf "could not extract ec.bin for board '%s'" ${board} \
1>&2
- fail "aborting the build. please audit blobutil carefully."
+ fail "aborting the build. please audit lbmk carefully."
fi
"${kbc1126_ec_dump}" ec.bin
diff --git a/resources/scripts/update/blobs/extract b/resources/scripts/update/blobs/extract
index 5ac8e91c..ad11afb4 100755
--- a/resources/scripts/update/blobs/extract
+++ b/resources/scripts/update/blobs/extract
@@ -142,8 +142,8 @@ fail()
print_help()
{
- printf "Usage: ./blobutil extract {boardname} {path/to/vendor_rom}\n"
- printf "Example: ./blobutil extract x230 12mb_flash.bin\n"
+ printf "Usage: ./update blobs extract {boardname} {path/to/vendor_rom}\n"
+ printf "Example: ./update blobs extract x230 12mb_flash.bin\n"
printf "\nYou need to specify exactly 2 arguments\n"
}
diff --git a/resources/scripts/update/blobs/inject b/resources/scripts/update/blobs/inject
index 1d51ef98..0c38c5ed 100755
--- a/resources/scripts/update/blobs/inject
+++ b/resources/scripts/update/blobs/inject
@@ -151,7 +151,7 @@ build_dependencies()
./build module cbutils default || fail "could not build cbutils"
- ./blobutil download ${board} || \
+ ./update blobs download ${board} || \
fail "Could not download blobs for ${board}"
}
@@ -405,13 +405,13 @@ fail()
usage()
{
cat <<- EOF
- USAGE: ./blobutil inject -r [rom path] -b [boardname] -m [macaddress]
- Example: ./blobutil inject -r x230_12mb.rom -b x230_12mb
+ USAGE: ./update blobs inject -r [rom path] -b [boardname] -m [macaddress]
+ Example: ./update blobs inject -r x230_12mb.rom -b x230_12mb
Adding a macadress to the gbe is optional.
If the [-m] parameter is left blank, the gbe will not be touched.
- Type './blobutil inject listboards' to get a list of valid boards
+ Type './update blobs inject listboards' to get a list of valid boards
EOF
}