diff options
author | Leah Rowe <leah@libreboot.org> | 2021-11-03 15:56:47 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2021-11-03 15:56:47 +0000 |
commit | 8888b2b777f42a9d208ce4c1deb987c7037ea18f (patch) | |
tree | 0e84ce361d67ece5a98061d54725aef26e1f9b5d /resources/scripts/download/seabios | |
parent | 7e6bec17efb42af2dc9290e6eac36838e325233b (diff) |
bump seabios to the latest version in seabios.git
Diffstat (limited to 'resources/scripts/download/seabios')
-rwxr-xr-x | resources/scripts/download/seabios | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/scripts/download/seabios b/resources/scripts/download/seabios index a53d44f8..9eaa3fcb 100755 --- a/resources/scripts/download/seabios +++ b/resources/scripts/download/seabios @@ -48,9 +48,10 @@ cd "seabios/" # Reset to the last commit that was tested (we use stable releases for seabios) # ------------------------------------------------------------------------------ -git reset --hard b0d61ecef66eb05bd7a4eb7ada88ec5dab06dfee +git reset --hard 64f37cc530f144e53c190c9e8209a51b58fd5c43 for patchfile in ../resources/seabios/patches/*.patch; do + if [ ! -f "${patchfile}" ]; then continue; fi git am "${patchfile}" || touch ../build_error if [ -f ../build_error ]; then git am --abort |