mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 14:23:00 +00:00
50dd3da004
Some of the Intel CPU code is common to several Intel CPUs. Move it into a common location along with required declarations. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
12 lines
190 B
Makefile
12 lines
190 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
|
|
ifndef CONFIG_TARGET_EFI
|
|
obj-y += microcode.o
|
|
endif
|