From e1ea9656cd146f80a54475d3e8b80248a30cd673 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Tue, 12 Mar 2024 09:45:58 -0700 Subject: [PATCH] payloads: allow selecting a file for FLAT_BINARY 085c97363ed6477c64b61263a59d7e9642e05cda introduced a bug in that we could not select a file to use, and, in fact, the payload was never installed into the image in this case. Add FLAT_BINARY to the predicate enabling a file selection dialog. Change-Id: I8174b656b1e6ebb3663172f473e4070b30f19126 Signed-off-by: Ronald G Minnich Reviewed-on: https://review.coreboot.org/c/coreboot/+/81183 Reviewed-by: Maximilian Brune Reviewed-by: Nico Huber Reviewed-by: Philipp Hug Tested-by: build bot (Jenkins) --- payloads/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payloads/Kconfig b/payloads/Kconfig index d18c1b027f..ec1d40c992 100644 --- a/payloads/Kconfig +++ b/payloads/Kconfig @@ -59,7 +59,7 @@ source "payloads/external/*/Kconfig" config PAYLOAD_FILE string "Payload path and filename" - depends on PAYLOAD_ELF || PAYLOAD_FIT + depends on PAYLOAD_ELF || PAYLOAD_FIT || PAYLOAD_FLAT_BINARY default "payload.elf" if PAYLOAD_ELF default "uImage" if PAYLOAD_FIT help