diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-07 05:03:57 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-07 05:04:55 +0100 |
commit | 0ed2ec294bf31d8218e16bcf582031e6b319348f (patch) | |
tree | bd2920f1e3cf796176c3e28d00e2e74ab1ae1d27 /script/update/vendor | |
parent | b6d9e6c18ded5659ef5d0ea950133bdb0bb5c772 (diff) |
build/coreboot/util: merge to update/project/build
The benefit now is that it can be cleaned. E.g.
./update project build -b coreboot utils
./update project build -b coreboot utils default
./update project build -c coreboot utils
./update project build -c coreboot utils default
the update/project/build script checks when arguments
are provided after the project name. if the first one
is "utils", then it acts in the same way as the old
build/coreboot/util script
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/update/vendor')
-rwxr-xr-x | script/update/vendor/download | 2 | ||||
-rwxr-xr-x | script/update/vendor/inject | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/script/update/vendor/download b/script/update/vendor/download index 21b0f7ed..aec59c1f 100755 --- a/script/update/vendor/download +++ b/script/update/vendor/download @@ -50,7 +50,7 @@ build_dependencies() x_ ./update project build -b uefitool [ -f "${kbc1126_ec_dump}" ] || \ x_ make -C "${cbdir}/util/kbc1126" - x_ ./build coreboot utils default + x_ ./update project build -b coreboot utils default } download_vendorfiles() diff --git a/script/update/vendor/inject b/script/update/vendor/inject index eac4da37..0b26f81e 100755 --- a/script/update/vendor/inject +++ b/script/update/vendor/inject @@ -88,7 +88,7 @@ detect_board() build_dependencies() { [ -d "${cbdir}" ] || x_ ./update project trees coreboot default - x_ ./build coreboot utils default + x_ ./update project build -b coreboot utils default x_ ./update vendor download ${board} } |