diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-04 02:12:05 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-04 02:12:05 +0100 |
commit | a05010503f9a748943033d1fc40e36625e72dcbb (patch) | |
tree | de3bf03cf9cf3f8b1e3e673e0ff9d01f956de9f8 /script/update/blobs | |
parent | 03788d14fb0dd79b38817d5a40f1c5c2017f4551 (diff) |
blobs/download: don't handle ifd/gbe files
they weren't even handled at all, but they were referenced
under coreboot configuration
they don't need to be handled. lbmk simply includes these files.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/update/blobs')
-rwxr-xr-x | script/update/blobs/download | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/script/update/blobs/download b/script/update/blobs/download index 05730c4b..cadd0681 100755 --- a/script/update/blobs/download +++ b/script/update/blobs/download @@ -41,9 +41,7 @@ uefiextract="$(pwd)/uefitool/uefiextract" _b="" # board shorthand without e.g. _4mb (avoid duplication per flash size) CONFIG_HAVE_MRC="" -CONFIG_HAVE_IFD_BIN="" CONFIG_HAVE_ME_BIN="" -CONFIG_HAVE_GBE_BIN="" CONFIG_KBC1126_FIRMWARE="" CONFIG_BOARD_DELL_E6400="" CONFIG_VGA_BIOS_FILE="" @@ -83,9 +81,7 @@ detect_firmware() . "${boarddir}/target.cfg" [ "${CONFIG_HAVE_MRC}" = "y" ] && needs="${needs} MRC" - [ "${CONFIG_HAVE_IFD_BIN}" = "y" ] && needs="${needs} IFD" [ "${CONFIG_HAVE_ME_BIN}" = "y" ] && needs="${needs} ME" - [ "${CONFIG_HAVE_GBE_BIN}" = "y" ] && needs="${needs} GBE" [ "${CONFIG_KBC1126_FIRMWARE}" = "y" ] && needs="${needs} EC" [ "${CONFIG_BOARD_DELL_E6400}" = "y" ] && \ [ "${CONFIG_VGA_BIOS_FILE}" != "" ] && needs="${needs} E6400VGA" |