mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
f09d4edf4b
Both versions of FSP can use the same graphics support, so move it into the common directory. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
10 lines
204 B
Makefile
10 lines
204 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2019 Google LLC
|
|
|
|
obj-y += fsp_common.o
|
|
obj-y += fsp_dram.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_VIDEO_FSP) += fsp_graphics.o
|
|
endif
|
|
obj-y += fsp_support.o
|