mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 11:18:28 +00:00
1aad38f6e6
Adds an fdt.c file in that defines the ft_cpu_setup() function, which should be called from a board-specific ft_board_setup()). This ft_cpu_setup() will currently do nothing for non-secure (GP) devices but contains pertinent updates for booting on secure (HS) devices. Update the omap5 Makefile to include the fdt.c in the build. Signed-off-by: Daniel Allred <d-allred@ti.com> Signed-off-by: Madan Srinivas <madans@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
16 lines
318 B
Makefile
16 lines
318 B
Makefile
#
|
|
# (C) Copyright 2000-2010
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += boot.o
|
|
obj-y += hwinit.o
|
|
obj-y += emif.o
|
|
obj-y += sdram.o
|
|
obj-y += prcm-regs.o
|
|
obj-y += hw_data.o
|
|
obj-y += abb.o
|
|
obj-y += fdt.o
|
|
obj-$(CONFIG_IODELAY_RECALIBRATION) += dra7xx_iodelay.o
|