mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 02:38:56 +00:00
987116f7f6
Update the Makefile so that some 32-bit init can be built into SPL rather than U-Boot proper. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
18 lines
352 B
Makefile
18 lines
352 B
Makefile
#
|
|
# Copyright (c) 2014 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_HAVE_FSP
|
|
obj-y += fsp_configs.o ivybridge.o
|
|
else
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += cpu.o
|
|
obj-y += early_me.o
|
|
obj-y += lpc.o
|
|
obj-y += model_206ax.o
|
|
obj-y += northbridge.o
|
|
obj-y += sata.o
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += sdram.o
|
|
endif
|
|
obj-y += bd82x6x.o
|