mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
82e0646af7
Add a function to display the company's logo and board information via the API from DM_VIDEO. This function can be shared by other atmel boards, so locate it in board/atmel/common folder. Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com> Reviewed-by: Simon Glass <sjg@chromium.org>
12 lines
253 B
Makefile
12 lines
253 B
Makefile
#
|
|
# Copyright (C) 2017 Microchip
|
|
# Wenyou Yang <wenyou.yang@microchip.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += board.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_I2C_EEPROM) += mac_eeprom.o
|
|
obj-$(CONFIG_DM_VIDEO) += video_display.o
|
|
endif
|