From f40de4e1622fec2aa2bd7d9572aa7409330df271 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Sun, 16 Nov 2025 16:38:31 -0600 Subject: [PATCH] payloads/ipxe: Default enable serial output only if CONSOLE_SERIAL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If coreboot serial output is not enabled, it is pointless to enable iPXE serial console as there's nowhere for the outout to go. Change-Id: I91e76f255a674f8bfb849310f791b57a8cbcfd09 Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/90061 Tested-by: build bot (Jenkins) Reviewed-by: Walter Sonius Reviewed-by: Filip LewiƄski Reviewed-by: Paul Menzel Reviewed-by: Elyes Haouas Reviewed-by: Sean Rhodes --- payloads/external/iPXE/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payloads/external/iPXE/Kconfig b/payloads/external/iPXE/Kconfig index 845a8a1652..fd427e9754 100644 --- a/payloads/external/iPXE/Kconfig +++ b/payloads/external/iPXE/Kconfig @@ -71,7 +71,7 @@ endchoice config IPXE_SERIAL_CONSOLE bool "Enable iPXE serial console" - def_bool y + def_bool y if CONSOLE_SERIAL help Enable/disable iPXE serial console. Since SeaBIOS supports serial console this option might be helpful to avoid duplicated output.