mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
2444dae587
Add code for starting up U-Boot SPL and U-Boot proper. This is generic and makes use of devices provided by the board- or SoC-specific code. Signed-off-by: Simon Glass <sjg@chromium.org>
13 lines
207 B
Makefile
13 lines
207 B
Makefile
#
|
|
# Copyright (c) 2014 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += board-spl.o
|
|
else
|
|
obj-y += board.o
|
|
endif
|
|
obj-y += common.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3288) += rk3288/
|