Kconfig: Don't 'select' options based on PAYLOAD_SEABIOS
This is just wrong. PAYLOAD_SEABIOS tells us nothing about whether or not the payload will actually be SeaBIOS: 1. PAYLOAD_SEABIOS, but payload changed with cbfstool 2. !PAYLOAD_SEABIOS, but an elf payload was added which is SeaBIOS et. cetera. Change-Id: I4c17e8dde20bf21537f542fda2dad7d3a1894862 Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-on: http://review.coreboot.org/11293 Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-by: Damien Zammit <damien@zamaudio.com>
This commit is contained in:
parent
cf1c94d1bf
commit
4093148b26
|
@ -51,7 +51,7 @@ config VGA_ROM_RUN
|
|||
bool "Run VGA Option ROMs"
|
||||
default n if PAYLOAD_SEABIOS
|
||||
default y if !PAYLOAD_SEABIOS
|
||||
depends on PCI && !PAYLOAD_SEABIOS && !MAINBOARD_DO_NATIVE_VGA_INIT || EXPERT
|
||||
depends on PCI && !MAINBOARD_DO_NATIVE_VGA_INIT && EXPERT
|
||||
help
|
||||
Execute VGA Option ROMs in coreboot if found. This is required
|
||||
to enable PCI/AGP/PCI-E video cards when not using a SeaBIOS
|
||||
|
@ -92,7 +92,7 @@ config ON_DEVICE_ROM_RUN
|
|||
bool "Run Option ROMs on PCI devices"
|
||||
default n if PAYLOAD_SEABIOS
|
||||
default y if !PAYLOAD_SEABIOS
|
||||
depends on PCI && !PAYLOAD_SEABIOS || EXPERT
|
||||
depends on PCI && EXPERT
|
||||
help
|
||||
Execute Option ROMs stored on PCI/PCIe/AGP devices in coreboot.
|
||||
|
||||
|
|
|
@ -2,8 +2,6 @@ if BOARD_GOOGLE_CYAN
|
|||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select VGA_ROM_RUN if !PAYLOAD_SEABIOS
|
||||
select ALWAYS_LOAD_OPROM if !PAYLOAD_SEABIOS
|
||||
select BOARD_ROMSIZE_KB_8192
|
||||
select EC_GOOGLE_CHROMEEC
|
||||
select EC_GOOGLE_CHROMEEC_MEC
|
||||
|
|
|
@ -11,8 +11,6 @@ config BOARD_SPECIFIC_OPTIONS
|
|||
select HAVE_ACPI_RESUME
|
||||
select MAINBOARD_HAS_CHROMEOS
|
||||
select MAINBOARD_HAS_LPC_TPM
|
||||
select VGA_ROM_RUN if !PAYLOAD_SEABIOS
|
||||
select ALWAYS_LOAD_OPROM if !PAYLOAD_SEABIOS
|
||||
|
||||
config CHROMEOS
|
||||
select CHROMEOS_VBNV_CMOS
|
||||
|
|
|
@ -2,8 +2,6 @@ if BOARD_INTEL_STRAGO
|
|||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select VGA_ROM_RUN if !PAYLOAD_SEABIOS
|
||||
select ALWAYS_LOAD_OPROM if !PAYLOAD_SEABIOS
|
||||
select BOARD_ROMSIZE_KB_8192
|
||||
select EC_GOOGLE_CHROMEEC
|
||||
select EC_GOOGLE_CHROMEEC_MEC
|
||||
|
|
|
@ -11,8 +11,6 @@ config CPU_SPECIFIC_OPTIONS
|
|||
select ARCH_VERSTAGE_X86_32
|
||||
select ARCH_ROMSTAGE_X86_32
|
||||
select ARCH_RAMSTAGE_X86_32
|
||||
select VGA_ROM_RUN if !PAYLOAD_SEABIOS
|
||||
select ALWAYS_LOAD_OPROM if !PAYLOAD_SEABIOS
|
||||
select BACKUP_DEFAULT_SMM_REGION
|
||||
select CACHE_MRC_SETTINGS
|
||||
select MRC_SETTINGS_PROTECT
|
||||
|
|
|
@ -11,8 +11,6 @@ config CPU_SPECIFIC_OPTIONS
|
|||
select ARCH_RAMSTAGE_X86_32
|
||||
select ARCH_ROMSTAGE_X86_32
|
||||
select ARCH_VERSTAGE_X86_32
|
||||
select VGA_ROM_RUN if !PAYLOAD_SEABIOS
|
||||
select ALWAYS_LOAD_OPROM if !PAYLOAD_SEABIOS
|
||||
select BACKUP_DEFAULT_SMM_REGION
|
||||
select CACHE_MRC_SETTINGS
|
||||
select CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM
|
||||
|
|
Loading…
Reference in New Issue