diff options
author | Martin Roth <gaumless@gmail.com> | 2023-01-11 10:12:37 -0700 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-01-14 05:31:22 +0000 |
commit | d0d33d40ce8274acc4be65185b0fbce5c4763b6a (patch) | |
tree | 57cee233c14a0098e7b839a8982aa9d1ed657968 /configs/config.google_skyrim.no_video | |
parent | 83ac83015a5180a8acd351db3bc7ac188bd88dd1 (diff) |
configs/google_skyrim.no_video: Fix typo and regenerate
There was a typo in the config disabling bootblock
should have been:
# CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK is not set
As the line moved, it is the missing underscore after CONFIG,
preventing it from working as intended.
The other changes are updates to allow it to match what we get by
copying it to .config, then running:
make olddefconfig; make savedefconfig
Change-Id: Ic41a91e0a6ecd254a86d0872da19a0d4d321b8e3
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71840
Reviewed-by: Jason Glenesk <jason.glenesk@gmail.com>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'configs/config.google_skyrim.no_video')
-rw-r--r-- | configs/config.google_skyrim.no_video | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configs/config.google_skyrim.no_video b/configs/config.google_skyrim.no_video index f36a3ff1e4..36da48786e 100644 --- a/configs/config.google_skyrim.no_video +++ b/configs/config.google_skyrim.no_video @@ -6,14 +6,18 @@ CONFIG_VBOOT=y CONFIG_VBOOT_SLOTS_RW_A=y # CONFIG_DRIVERS_INTEL_WIFI is not set CONFIG_BOARD_GOOGLE_SKYRIM=y +CONFIG_CONSOLE_CBMEM_BUFFER_SIZE=0x80000 CONFIG_VBOOT_FWID_MODEL="Google_$(CONFIG_MAINBOARD_PART_NUMBER)" +# CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK is not set CONFIG_POWER_STATE_PREVIOUS_AFTER_FAILURE=y CONFIG_ASYNC_FILE_LOADING=y # CONFIG_ACPI_BERT is not set # CONFIG_ACPI_SSDT_PSD_INDEPENDENT is not set -CONFIG_ENABLE_STB_SPILL_TO_DRAM=y CONFIG_AMD_STB_SIZE_IN_MB=3 CONFIG_NO_GFX_INIT=y +CONFIG_SUBSYSTEM_VENDOR_ID=0x0000 +CONFIG_SUBSYSTEM_DEVICE_ID=0x0000 +CONFIG_I2C_TRANSFER_TIMEOUT_US=500000 CONFIG_VPD=y CONFIG_CBFS_MCACHE_RW_PERCENTAGE=50 CONFIG_GBB_FLAG_DEV_SCREEN_SHORT_DELAY=y @@ -22,4 +26,4 @@ CONFIG_VBOOT_KEYBLOCK_VERSION=1 CONFIG_VBOOT_KEYBLOCK_PREAMBLE_FLAGS=0x0 CONFIG_SECURITY_CLEAR_DRAM_ON_REGULAR_BOOT=y CONFIG_POST_IO_PORT=0x80 -# CONFIG VBOOT_STARTS_BEFORE_BOOTBLOCK is not set +CONFIG_SEABIOS_DEBUG_LEVEL=-1 |