Move the BGRT image to use the same video_image linker-list approach as the other embedded image. Move it into the drivers/video/images directory and rename it to 'bgrt.bmp' since we know it is an image. Drop the old bgrt Makefile rule as it is no-longer needed. Co-developed-by: Claude <noreply@anthropic.com> Signed-off-by: Simon Glass <sjg@chromium.org>
31 lines
610 B
Makefile
31 lines
610 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += acpi.o
|
|
|
|
ifdef CONFIG_$(PHASE_)GENERATE_ACPI_TABLE
|
|
|
|
obj-$(CONFIG_$(PHASE_)ACPIGEN) += acpigen.o
|
|
obj-$(CONFIG_$(PHASE_)ACPIGEN) += acpi_device.o
|
|
obj-$(CONFIG_$(PHASE_)ACPIGEN) += acpi_dp.o
|
|
obj-$(CONFIG_$(PHASE_)ACPIGEN) += acpi_table.o
|
|
obj-y += acpi_extra.o
|
|
obj-y += acpi_writer.o
|
|
|
|
# With QEMU the ACPI tables come from there, not from U-Boot
|
|
ifndef CONFIG_QFW_ACPI
|
|
obj-y += base.o
|
|
obj-y += csrt.o
|
|
obj-y += mcfg.o
|
|
|
|
# Sandbox does not build a .asl file
|
|
ifndef CONFIG_SANDBOX
|
|
obj-y += dsdt.o
|
|
endif
|
|
|
|
obj-y += facs.o
|
|
obj-y += ssdt.o
|
|
endif
|
|
|
|
endif # GENERATE_ACPI_TABLE
|