diff options
author | Simon Glass <sjg@chromium.org> | 2021-12-01 09:02:36 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-01-25 11:44:36 -0700 |
commit | e1722fcb7d3fcb62b41f0feda4ac2c7d27d7c1f1 (patch) | |
tree | c96cc97001c76606a7aadcdabf5e170852bcd267 /arch/Kconfig | |
parent | 6146cd62aedc4849fec66f10ab0aa57f1dc64b8e (diff) | |
download | u-boot-e1722fcb7d3fcb62b41f0feda4ac2c7d27d7c1f1.tar.gz |
x86: Allow any arch to generate ACPI tables
These have sadly found their way to ARM now. Allow any arch to support
generating ACPI tables.
Disable this for the tools build.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 343db9e7cc..b5aa83de9b 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -152,6 +152,7 @@ config SANDBOX select SYS_CACHE_SHIFT_4 select IRQ select SUPPORT_EXTENSION_SCAN + select SUPPORT_ACPI imply BITREVERSE select BLOBLIST imply LTO @@ -217,6 +218,7 @@ config X86 select HAVE_PRIVATE_LIBGCC select OF_CONTROL select PCI + select SUPPORT_ACPI select SUPPORT_OF_CONTROL select SYS_CACHE_SHIFT_6 select TIMER |