mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
7ba0261810
Create a soc.c file to put the code for soc special settings. Signed-off-by: Yuan Yao <yao.yuan@freescale.com> Reviewed-by: York Sun <yorksun@freescale.com>
20 lines
400 B
Makefile
20 lines
400 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_SCSI_AHCI_PLAT) += ls102xa_sata.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
|
|
endif
|