mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
b4d4f592b2
Make a few adjustments to allow us to build an SPL image for coreboot. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com>
24 lines
477 B
Makefile
24 lines
477 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2011 The Chromium OS Authors.
|
|
#
|
|
# (C) Copyright 2008
|
|
# Graeme Russ, graeme.russ@gmail.com.
|
|
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2002
|
|
# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
|
|
|
|
ifndef CONFIG_SPL
|
|
obj-y += car.o
|
|
endif
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += coreboot_spl.o
|
|
else
|
|
obj-y += sdram.o
|
|
endif
|
|
obj-y += coreboot.o
|
|
obj-y += tables.o
|
|
obj-y += timestamp.o
|