mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
f15ea6e1d6
Conflicts: arch/arm/cpu/armv7/rmobile/Makefile doc/README.scrapyard Needed manual fix: arch/arm/cpu/armv7/omap-common/Makefile board/compulab/cm_t335/u-boot.lds
34 lines
613 B
Makefile
34 lines
613 B
Makefile
#
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y := reset.o
|
|
obj-y += timer.o
|
|
obj-y += utils.o
|
|
|
|
ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
|
|
obj-y += hwinit-common.o
|
|
obj-y += clocks-common.o
|
|
obj-y += emif-common.o
|
|
obj-y += vc.o
|
|
obj-y += abb.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_OMAP54XX),)
|
|
obj-y += pipe3-phy.o
|
|
obj-$(CONFIG_SCSI_AHCI_PLAT) += sata.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OMAP34XX),)
|
|
obj-y += boot-common.o
|
|
obj-y += lowlevel_init.o
|
|
endif
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
|
|
obj-y += mem-common.o
|
|
endif
|
|
endif
|