mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
acpi: Enable ACPI table generation by default on x86
This should ideally be used by all x86 boards in U-Boot. Enable it by default. If some boards don't use it, the cost is small. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
4021ee6388
commit
d40d2c5706
2 changed files with 2 additions and 1 deletions
|
@ -190,6 +190,7 @@ config X86
|
|||
imply PCH
|
||||
imply RTC_MC146818
|
||||
imply IRQ
|
||||
imply ACPIGEN if !QEMU
|
||||
|
||||
# Thing to enable for when SPL/TPL are enabled: SPL
|
||||
imply SPL_DM
|
||||
|
|
|
@ -270,7 +270,7 @@ config DM_DEV_READ_INLINE
|
|||
|
||||
config ACPIGEN
|
||||
bool "Support ACPI table generation in driver model"
|
||||
default y if SANDBOX || GENERATE_ACPI_TABLE
|
||||
default y if SANDBOX || (GENERATE_ACPI_TABLE && !QEMU)
|
||||
help
|
||||
This option enables generation of ACPI tables using driver-model
|
||||
devices. It adds a new operation struct to each driver, to support
|
||||
|
|
Loading…
Add table
Reference in a new issue