Lubomir Rintel has uploaded this change for review. ( https://review.coreboot.org/21611
Change subject: mainboard: use SeaBIOS config only when it's the payload of choice ......................................................................
mainboard: use SeaBIOS config only when it's the payload of choice
It makes no sense for Das U-Boot which uses the same setting.
Change-Id: I1629aecf33cb62bb1e6856ef5627748a7dc74d8a Signed-off-by: Lubomir Rintel lkundrak@v3.sk --- M src/mainboard/adi/rcc-dff/Kconfig M src/mainboard/intel/littleplains/Kconfig M src/mainboard/intel/mohonpeak/Kconfig 3 files changed, 12 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/11/21611/1
diff --git a/src/mainboard/adi/rcc-dff/Kconfig b/src/mainboard/adi/rcc-dff/Kconfig index 3c22a74..ab0e113 100644 --- a/src/mainboard/adi/rcc-dff/Kconfig +++ b/src/mainboard/adi/rcc-dff/Kconfig @@ -69,6 +69,8 @@ help The Mohon Peak board uses COM2 (2f8) for the serial console.
+if PAYLOAD_SEABIOS + config PAYLOAD_CONFIGFILE string default "$(top)/src/mainboard/$(MAINBOARDDIR)/config_seabios" @@ -77,4 +79,6 @@ segment. This means that USB/SATA devices will not work in SeaBIOS unless we put the SeaBIOS buffer area down in the 0x9000 segment.
+endif # PAYLOAD_SEABIOS + endif # BOARD_ADI_RCC_DFF diff --git a/src/mainboard/intel/littleplains/Kconfig b/src/mainboard/intel/littleplains/Kconfig index 10cde71..8c4050e 100644 --- a/src/mainboard/intel/littleplains/Kconfig +++ b/src/mainboard/intel/littleplains/Kconfig @@ -56,6 +56,8 @@ help The Little Plains board uses COM2 (2f8) for the serial console.
+if PAYLOAD_SEABIOS + config PAYLOAD_CONFIGFILE string default "$(top)/src/mainboard/$(MAINBOARDDIR)/config_seabios" @@ -64,4 +66,6 @@ segment. This means that USB/SATA devices will not work in SeaBIOS unless we put the SeaBIOS buffer area down in the 0x9000 segment.
+endif # PAYLOAD_SEABIOS + endif # BOARD_INTEL_LITTLEPLAINS diff --git a/src/mainboard/intel/mohonpeak/Kconfig b/src/mainboard/intel/mohonpeak/Kconfig index c354d1b..37a9878 100644 --- a/src/mainboard/intel/mohonpeak/Kconfig +++ b/src/mainboard/intel/mohonpeak/Kconfig @@ -69,6 +69,8 @@ help The Mohon Peak board uses COM2 (2f8) for the serial console.
+if PAYLOAD_SEABIOS + config PAYLOAD_CONFIGFILE string default "$(top)/src/mainboard/$(MAINBOARDDIR)/config_seabios" @@ -77,4 +79,6 @@ segment. This means that USB/SATA devices will not work in SeaBIOS unless we put the SeaBIOS buffer area down in the 0x9000 segment.
+endif # PAYLOAD_SEABIOS + endif # BOARD_INTEL_MOHONPEAK