mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
eacb6d0ba2
Move this table over to use a writer function, moving the code from the x86 implementation. Add a pointer to the DSDT in struct acpi_ctx so we can reference it later. Disable this table for sandbox since we don't actually compile real ASL code. Signed-off-by: Simon Glass <sjg@chromium.org>
20 lines
439 B
Makefile
20 lines
439 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_$(SPL_)ACPIGEN) += acpigen.o
|
|
obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_device.o
|
|
obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_dp.o
|
|
obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_table.o
|
|
obj-y += acpi_writer.o
|
|
|
|
# With QEMU the ACPI tables come from there, not from U-Boot
|
|
ifndef CONFIG_QEMU
|
|
obj-y += base.o
|
|
|
|
# Sandbox does not build a .asl file
|
|
ifndef CONFIG_SANDBOX
|
|
obj-y += dsdt.o
|
|
endif
|
|
|
|
obj-y += facs.o
|
|
endif
|