mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
87077e97d1
Wrap initialization codes with #ifndef CONFIG_HAVE_FSP #endif, and enable the build for both FSP and non-FSP configurations. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
23 lines
397 B
Makefile
23 lines
397 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-y += car.o
|
|
obj-y += cpu.o
|
|
obj-y += early_me.o
|
|
obj-y += gma.o
|
|
obj-y += lpc.o
|
|
obj-y += me_status.o
|
|
obj-y += model_206ax.o
|
|
obj-y += microcode_intel.o
|
|
obj-y += northbridge.o
|
|
obj-y += report_platform.o
|
|
obj-y += sata.o
|
|
obj-y += sdram.o
|
|
endif
|
|
obj-y += bd82x6x.o
|