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.
21 lines
748 B
21 lines
748 B
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_AT91_WANTS_COMMON_PHY) += phy.o
|
|
ifneq ($(CONFIG_SPL_BUILD),)
|
|
obj-$(CONFIG_AT91SAM9260) += sdram.o spl_at91.o
|
|
obj-$(CONFIG_AT91SAM9G20) += sdram.o spl_at91.o
|
|
obj-$(CONFIG_AT91SAM9M10G45) += mpddrc.o spl_at91.o
|
|
obj-$(CONFIG_AT91SAM9N12) += mpddrc.o spl_at91.o
|
|
obj-$(CONFIG_AT91SAM9X5) += mpddrc.o spl_at91.o
|
|
obj-$(CONFIG_SAMA5D2) += bootparams_atmel.o mpddrc.o spl_atmel.o matrix.o atmel_sfr.o
|
|
obj-$(CONFIG_SAMA5D3) += bootparams_atmel.o mpddrc.o spl_atmel.o
|
|
obj-$(CONFIG_SAMA5D4) += bootparams_atmel.o mpddrc.o spl_atmel.o matrix.o atmel_sfr.o
|
|
obj-y += spl.o
|
|
endif
|
|
|
|
obj-y += clock.o
|
|
obj-$(CONFIG_CPU_ARM920T) += arm920t/
|
|
obj-$(CONFIG_CPU_ARM926EJS) += arm926ejs/
|
|
obj-$(CONFIG_CPU_V7) += armv7/
|
|
|