mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
2eff989585
Use this new option to control the location of 32-bit init. This will allow us to place this in SPL if needed. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
18 lines
399 B
Makefile
18 lines
399 B
Makefile
#
|
|
# Copyright (c) 2016 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_HAVE_MRC
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += car.o
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += me_status.o
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += report_platform.o
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += mrc.o
|
|
endif
|
|
obj-y += cpu.o
|
|
obj-y += lpc.o
|
|
ifndef CONFIG_TARGET_EFI
|
|
obj-y += microcode.o
|
|
endif
|
|
obj-y += pch.o
|