From: Heinrich Schuchardt Date: Wed, 20 Jan 2021 20:37:56 +0000 (+0100) Subject: cmd: CMD_ACPI depends on ACPIGEN X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=12218c1ff41befedd78ed8cfa902f2cc25d05c88;p=u-boot.git cmd: CMD_ACPI depends on ACPIGEN Trying to compile qemu-x86_64_defconfig with CONFIG_CMD_ACPI=y and CONFIG_ACPIGEN=n fails with ld.bfd: cmd/built-in.o: in function `do_acpi_items': cmd/acpi.c:162: undefined reference to `acpi_dump_items' Add the missing configuration dependency. Signed-off-by: Heinrich Schuchardt Reviewed-by: Bin Meng --- diff --git a/cmd/Kconfig b/cmd/Kconfig index 0625ee4050..928a2a0a2d 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -84,7 +84,8 @@ menu "Info commands" config CMD_ACPI bool "acpi" - default y if ACPIGEN + depends on ACPIGEN + default y help List and dump ACPI tables. ACPI (Advanced Configuration and Power Interface) is used mostly on x86 for providing information to the