diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-04 01:17:23 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-04 01:38:08 +0100 |
commit | 03788d14fb0dd79b38817d5a40f1c5c2017f4551 (patch) | |
tree | e6dbbb81ca7fc9fed20367484e9167248e8e2626 /resources/coreboot/x220_8mb | |
parent | 6ddb0e09742bc80e85355c3321cee48849dcecd5 (diff) |
move ifd/gbe configs into config/ifd/
it doesn't really make sense for them to be under
blobs/ - nominally, they are blobs, but they are
well-understood data files containing config data,
that is easily parsed by tools like ich9show or
ifdtool (and tools like bincfg or nvmutil)
blobs/ has been re-purposed: this directory no longer
exists in lbmk, but it is created (and on .gitignore)
when needed, by blobutil
thus, the blobs/ directory shall only contain vendor
files, and only those files that libreboot scrubs from
releases. therefore, build/release/src can (and has
been) simplified; it currently copies just the ifd and
gbe files from blobs/, selectively, and this logic is
quite error prone, requiring maintenance. now, the
build/release/src script simply copies config/ (which
only ever contains distributable files) and entirely
ignores the blobs/ directory
the blob download script already creates the required
directory, except for the sch5545 download; this is
now fixed
lbmk code size is slightly smaller, due to this patch
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources/coreboot/x220_8mb')
-rw-r--r-- | resources/coreboot/x220_8mb/config/libgfxinit_corebootfb | 4 | ||||
-rw-r--r-- | resources/coreboot/x220_8mb/config/libgfxinit_txtmode | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/resources/coreboot/x220_8mb/config/libgfxinit_corebootfb b/resources/coreboot/x220_8mb/config/libgfxinit_corebootfb index 32909760..d19c3ae4 100644 --- a/resources/coreboot/x220_8mb/config/libgfxinit_corebootfb +++ b/resources/coreboot/x220_8mb/config/libgfxinit_corebootfb @@ -150,9 +150,9 @@ CONFIG_MRC_SETTINGS_CACHE_SIZE=0x10000 CONFIG_SPI_FLASH_INCLUDE_ALL_DRIVERS=y CONFIG_SPI_FLASH_WINBOND=y # CONFIG_DRIVERS_INTEL_WIFI is not set -CONFIG_IFD_BIN_PATH="../../blobs/xx20/ifd.bin" +CONFIG_IFD_BIN_PATH="../../config/ifd/xx20/ifd" CONFIG_ME_BIN_PATH="../../blobs/xx20/me.bin" -CONFIG_GBE_BIN_PATH="../../blobs/xx20/gbe.bin" +CONFIG_GBE_BIN_PATH="../../config/ifd/xx20/gbe" CONFIG_CONSOLE_CBMEM_BUFFER_SIZE=0x20000 CONFIG_CARDBUS_PLUGIN_SUPPORT=y CONFIG_SPI_FLASH_GIGADEVICE=y diff --git a/resources/coreboot/x220_8mb/config/libgfxinit_txtmode b/resources/coreboot/x220_8mb/config/libgfxinit_txtmode index 40306b70..c016a933 100644 --- a/resources/coreboot/x220_8mb/config/libgfxinit_txtmode +++ b/resources/coreboot/x220_8mb/config/libgfxinit_txtmode @@ -148,9 +148,9 @@ CONFIG_MRC_SETTINGS_CACHE_SIZE=0x10000 CONFIG_SPI_FLASH_INCLUDE_ALL_DRIVERS=y CONFIG_SPI_FLASH_WINBOND=y # CONFIG_DRIVERS_INTEL_WIFI is not set -CONFIG_IFD_BIN_PATH="../../blobs/xx20/ifd.bin" +CONFIG_IFD_BIN_PATH="../../config/ifd/xx20/ifd" CONFIG_ME_BIN_PATH="../../blobs/xx20/me.bin" -CONFIG_GBE_BIN_PATH="../../blobs/xx20/gbe.bin" +CONFIG_GBE_BIN_PATH="../../config/ifd/xx20/gbe" CONFIG_CONSOLE_CBMEM_BUFFER_SIZE=0x20000 CONFIG_CARDBUS_PLUGIN_SUPPORT=y CONFIG_SPI_FLASH_GIGADEVICE=y |