upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
399 B
16 lines
399 B
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2016 Google, Inc
|
|
|
|
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_APP
|
|
obj-y += microcode.o
|
|
endif
|
|
obj-y += pch.o
|
|
|