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.
44 lines
1.0 KiB
44 lines
1.0 KiB
#
|
|
# (C) Copyright 2008
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
LIB := $(obj)libfpga.o
|
|
|
|
ifdef CONFIG_FPGA
|
|
COBJS-y += fpga.o
|
|
COBJS-$(CONFIG_FPGA_SPARTAN2) += spartan2.o
|
|
COBJS-$(CONFIG_FPGA_SPARTAN3) += spartan3.o
|
|
COBJS-$(CONFIG_FPGA_VIRTEX2) += virtex2.o
|
|
COBJS-$(CONFIG_FPGA_ZYNQPL) += zynqpl.o
|
|
COBJS-$(CONFIG_FPGA_XILINX) += xilinx.o
|
|
COBJS-$(CONFIG_FPGA_LATTICE) += ivm_core.o lattice.o
|
|
ifdef CONFIG_FPGA_ALTERA
|
|
COBJS-y += altera.o
|
|
COBJS-$(CONFIG_FPGA_ACEX1K) += ACEX1K.o
|
|
COBJS-$(CONFIG_FPGA_CYCLON2) += cyclon2.o
|
|
COBJS-$(CONFIG_FPGA_STRATIX_II) += stratixII.o
|
|
endif
|
|
endif
|
|
|
|
COBJS := $(COBJS-y)
|
|
SRCS := $(COBJS:.o=.c)
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(obj).depend $(OBJS)
|
|
$(call cmd_link_o_target, $(OBJS))
|
|
|
|
#########################################################################
|
|
|
|
# defines $(obj).depend target
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
sinclude $(obj).depend
|
|
|
|
#########################################################################
|
|
|