mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
21c7d34279
The common.c file content can be safely moved to spl.c file after performing the DM/DTS conversion for the U-Boot proper. It contains the non DM/DTS setup code, which now is only used by SPL. Signed-off-by: Lukasz Majewski <lukma@denx.de>
11 lines
195 B
Makefile
11 lines
195 B
Makefile
#
|
|
# Copyright (C) 2017, DENX Software Engineering
|
|
# Lukasz Majewski <lukma@denx.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y = spl.o
|
|
else
|
|
obj-y := display5.o
|
|
endif
|