summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-10-07 00:57:55 +0100
committerLeah Rowe <leah@libreboot.org>2023-10-07 01:23:11 +0100
commit62cc895c3c293011c256bb8c45cc4c07797cbf36 (patch)
tree59dbe281b5d6b8dd7c7ad848e715836744332989 /build
parent3c7e37b15d84cbdac6777c5cdb9f050af1c8b16b (diff)
rename blob/ to vendor/
in the future, we may start downloading files that aren't blobs, such as mxm port configs (on mainboards that use MXM graphics) this directory will contain all of those files generally change the language used, across lbmk, to make use of "vendorfile" instead of "blob" Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'build')
-rwxr-xr-xbuild2
1 files changed, 2 insertions, 0 deletions
diff --git a/build b/build
index 0311fb5e..e3ba1b9c 100755
--- a/build
+++ b/build
@@ -79,6 +79,8 @@ execute_command()
lbmkcmd="${buildpath}/${mode}/${option}"
[ "${lbmkcmd}" = "./script/build/boot/roms" ] && \
printf "NOTE: ./build boot roms now: ./build fw coreboot\n" 1>&2
+ [ "${lbmkcmd%/*}" = "./script/update/blobs" ] && \
+ printf "NOTE: ./update blobs is now: ./update vendor\n" 1>&2
[ -f "${lbmkcmd}" ] || fail "Invalid command. Run: ${linkpath} help"
"${lbmkcmd}" $@ || fail "execute_command: ${lbmkcmd} ${@}"
}