From 93f3f143d6c24b103f8c7f6ef29dc5ebf7738974 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Mon, 7 Apr 2025 08:44:23 +0200 Subject: [PATCH] acpi: select CONFIG_BLOBLIST Since commit 53d5a221632e ("emulation: Use bloblist to hold tables") `make qemu-riscv64_smode_defconfig acpi.config && make` fails with qfw_acpi.c:146:(.text.evt_write_acpi_tables+0xc): undefined reference to `bloblist_add' Build with bloblist support. Fixes: 53d5a221632e ("emulation: Use bloblist to hold tables") Reviewed-by: Ilias Apalodimas Reviewed-by: Tom Rini Signed-off-by: Heinrich Schuchardt --- lib/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Kconfig b/lib/Kconfig index 17954461114..ac34ec45bb1 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -317,6 +317,7 @@ config SPL_ACPI config GENERATE_ACPI_TABLE bool "Generate an ACPI (Advanced Configuration and Power Interface) table" depends on ACPI + select BLOBLIST select QFW if QEMU help The Advanced Configuration and Power Interface (ACPI) specification -- 2.39.5