mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
7e4154a553
Enable the cache for all devices, unless CONFIG_SYS_DCACHE_OFF is defined. This speeds up the Beaglebone Black boot considerable. (Tested only on Beaglebone Black with SD card boot) Signed-off-by: Simon Glass <sjg@chromium.org>
34 lines
593 B
Makefile
34 lines
593 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_SYS_DCACHE_OFF),)
|
|
obj-y += omap-cache.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OMAP34XX),)
|
|
obj-y += boot-common.o
|
|
obj-y += lowlevel_init.o
|
|
endif
|
|
|
|
obj-y += mem-common.o
|