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>
10 lines
189 B
Makefile
10 lines
189 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2025 Simon Glass <sjg@chromium.org>
|
|
|
|
obj-$(CONFIG_VIDEO_LOGO) += u_boot.o
|
|
|
|
ifdef CONFIG_$(PHASE_)GENERATE_ACPI_TABLE
|
|
obj-y += bgrt.o
|
|
endif
|