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.
33 lines
776 B
33 lines
776 B
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
LIB := $(obj)libtpm.o
|
|
|
|
$(shell mkdir -p $(obj)slb9635_i2c)
|
|
|
|
# TODO: Merge tpm_tis_lpc.c with tpm.c
|
|
COBJS-$(CONFIG_TPM_ATMEL_TWI) += tpm_atmel_twi.o
|
|
COBJS-$(CONFIG_TPM_TIS_I2C) += tpm.o
|
|
COBJS-$(CONFIG_TPM_TIS_I2C) += tpm_tis_i2c.o
|
|
COBJS-$(CONFIG_TPM_TIS_LPC) += tpm_tis_lpc.o
|
|
|
|
COBJS := $(COBJS-y)
|
|
SRCS := $(COBJS:.o=.c)
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(obj).depend $(OBJS)
|
|
$(call cmd_link_o_target, $(OBJS))
|
|
|
|
#########################################################################
|
|
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
sinclude $(obj).depend
|
|
|
|
#########################################################################
|
|
|