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.
27 lines
554 B
27 lines
554 B
#
|
|
# U-Boot Makefile
|
|
#
|
|
# Copyright (c) 2005-2008 Analog Devices Inc.
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += ins.o
|
|
obj-y += memcmp.o
|
|
obj-y += memcpy.o
|
|
obj-y += memmove.o
|
|
obj-y += memset.o
|
|
obj-y += outs.o
|
|
obj-$(CONFIG_CMD_KGDB) += __kgdb.o
|
|
obj-y += boot.o
|
|
obj-y += cache.o
|
|
obj-y += clocks.o
|
|
obj-$(CONFIG_CMD_CACHE_DUMP) += cmd_cache_dump.o
|
|
obj-$(CONFIG_CMD_KGDB) += kgdb.o
|
|
obj-y += muldi3.o
|
|
obj-$(CONFIG_HAS_POST) += post.o
|
|
obj-y += string.o
|
|
obj-y += sections.o
|
|
|