mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
8b900a4175
Some of the Intel ME code is common to several Intel CPUs. Move it into a common location. Add a header file for report_platform.c also. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> [squashed in http://patchwork.ozlabs.org/patch/598372/] Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
14 lines
272 B
Makefile
14 lines
272 B
Makefile
#
|
|
# Copyright (c) 2016 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_HAVE_MRC) += car.o
|
|
obj-y += cpu.o
|
|
obj-y += lpc.o
|
|
obj-$(CONFIG_HAVE_MRC) += me_status.o
|
|
ifndef CONFIG_TARGET_EFI
|
|
obj-y += microcode.o
|
|
endif
|
|
obj-$(CONFIG_HAVE_MRC) += report_platform.o
|