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.
30 lines
792 B
30 lines
792 B
#
|
|
# (C) Copyright 2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
include $(TOPDIR)/config.mk
|
|
|
|
LIB = libpost$(ARCH)fpu.o
|
|
|
|
COBJS-$(CONFIG_HAS_POST) += 20001122-1.o
|
|
COBJS-$(CONFIG_HAS_POST) += 20010114-2.o
|
|
COBJS-$(CONFIG_HAS_POST) += 20010226-1.o
|
|
COBJS-$(CONFIG_HAS_POST) += 980619-1.o
|
|
COBJS-$(CONFIG_HAS_POST) += acc1.o
|
|
COBJS-$(CONFIG_HAS_POST) += compare-fp-1.o
|
|
COBJS-$(CONFIG_HAS_POST) += fpu.o
|
|
COBJS-$(CONFIG_HAS_POST) += mul-subnormal-single-1.o
|
|
|
|
COBJS-$(CONFIG_HAS_POST) += darwin-ldouble.o
|
|
|
|
include $(TOPDIR)/post/rules.mk
|
|
|
|
CFLAGS := $(shell echo $(CFLAGS) | sed s/-msoft-float//)
|
|
CFLAGS += -mhard-float -fkeep-inline-functions
|
|
|
|
$(obj)%.o: %.c
|
|
$(CC) $(ALL_CFLAGS) -o $@.fp $< -c
|
|
$(OBJCOPY) -R .gnu.attributes $@.fp $@
|
|
rm -f $@.fp
|
|
|