mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
274ccb5b11
Similar changes was done for Zynq in past and this patch just follow
this pattern to separate cpu code from SoC code.
Move arch/arm/cpu/armv8/zynqmp/* -> arch/arm/mach-zynqmp/*
And also fix references to these files.
Based on
"ARM: zynq: move SoC sources to mach-zynq"
(sha1: 0107f24036
)
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
10 lines
275 B
Makefile
10 lines
275 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2014 - 2015 Xilinx, Inc.
|
|
# Michal Simek <michal.simek@xilinx.com>
|
|
|
|
obj-y += clk.o
|
|
obj-y += cpu.o
|
|
obj-$(CONFIG_MP) += mp.o
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o handoff.o
|
|
obj-$(CONFIG_ZYNQMP_PSU_INIT_ENABLED) += psu_spl_init.o
|