mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
686203737e
Remove the old implementation in order to enable DM for sata Signed-off-by: Peng Ma <peng.ma@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
19 lines
368 B
Makefile
19 lines
368 B
Makefile
#
|
|
# Copyright 2014 Freescale Semiconductor, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += cpu.o
|
|
obj-y += clock.o
|
|
obj-y += timer.o
|
|
obj-y += fsl_epu.o
|
|
obj-y += soc.o
|
|
|
|
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += fsl_ls1_serdes.o ls102xa_serdes.o
|
|
obj-$(CONFIG_SPL) += spl.o
|
|
|
|
ifdef CONFIG_ARMV7_PSCI
|
|
obj-y += psci.o ls102xa_psci.o
|
|
endif
|