Makefile 578 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. obj-y += acpi.o
  4. ifdef CONFIG_$(SPL_TPL_)GENERATE_ACPI_TABLE
  5. obj-$(CONFIG_$(SPL_)ACPIGEN) += acpigen.o
  6. obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_device.o
  7. obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_dp.o
  8. obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_table.o
  9. obj-y += acpi_writer.o
  10. # With QEMU the ACPI tables come from there, not from U-Boot
  11. ifndef CONFIG_QEMU
  12. obj-y += base.o
  13. obj-y += csrt.o
  14. obj-y += mcfg.o
  15. # Sandbox does not build a .asl file
  16. ifndef CONFIG_SANDBOX
  17. obj-y += dsdt.o
  18. endif
  19. obj-y += facs.o
  20. obj-y += ssdt.o
  21. endif
  22. endif # GENERATE_ACPI_TABLE