mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
e0fe3dcbd0
The mccmon6 has been used a "mixed" approach between SPL and U-Boot proper sources. This commit decoupes SPL and u-boot proper, which allows clear distinction between those two code bases and facilitates conversion to DM/DTS on this particular board. Signed-off-by: Lukasz Majewski <lukma@denx.de>
9 lines
194 B
Makefile
9 lines
194 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2016-2017
|
|
# Lukasz Majewski, DENX Software Engineering, lukma@denx.de
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y := spl.o
|
|
else
|
|
obj-y := mccmon6.o
|
|
endif
|