diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-09-21 01:43:58 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-09-21 01:43:58 +0100 |
| commit | b8459d3c62a33fdd20afdbb2d77ddabe881615a5 (patch) | |
| tree | 3c29e1a0adfb0a8e882d55c2ec2b85c0f58f9392 | |
| parent | 34f664e233f4868e05f0d294d149c374d84149ea (diff) | |
coreboot/3040micro: correct ME_bin_hash
now the 3040 micro vendor download works
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | config/vendor/3040micro/pkg.cfg | 2 | ||||
| -rw-r--r-- | include/fw/vendor.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/vendor/3040micro/pkg.cfg b/config/vendor/3040micro/pkg.cfg index 88536e76..66dbdd4e 100644 --- a/config/vendor/3040micro/pkg.cfg +++ b/config/vendor/3040micro/pkg.cfg @@ -3,7 +3,7 @@ DL_hash="976bbb1e625f64df276d8343757d910c88b8a781f953bc2c41a7dd15184ec70d55f8081de2a0aaa83cddb8e73bdc2df6288fde6e0897e4928c48ca4bb30bea2d" DL_url="https://download.asrock.com/BIOS/1151/H110M-DGS(7.30)ROM.zip" DL_url_bkup="https://web.archive.org/web/20230822134231/https://download.asrock.com/BIOS/1151/H110M-DGS(7.30)ROM.zip" -ME_bin_hash="3231ddb79be81f0a631926fc0e533ee7bce2d10032d7d45e56ae8a9894bcf9b4ca0b4f6fd3bc4daa185a464e771e0bf3d1b771a3180739b6896cec911758145b" +ME_bin_hash="836a27f14bf8426eadd957d2ec68711375a7581b487bad1c163a40360ed0214ce0d745e33c2402f441807df2ea19169da733ba4f1bebb26282c4964a36f053a9" # for Fsp.fd, we don't rely on a download. Instead, # we copy from coreboot.git. The file is defined diff --git a/include/fw/vendor.sh b/include/fw/vendor.sh index a928171b..bc69f458 100644 --- a/include/fw/vendor.sh +++ b/include/fw/vendor.sh @@ -163,7 +163,7 @@ fetch() mkdst() { - if ! bad_checksum "$1" "$2" 2>/dev/null; then + if ! bad_checksum "$1" "$2"; then x_ mv "$2" "$_dl_bin" x_ cp "$_dl_bin" "$_dest" exit 1 |
