mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
5d64eeb555
This patch adds the newly added C files to the Makefile to enable compilation. This is done in a separate step, to not introduce build breakage while adding the single files with potentially missing externals. Signed-off-by: Stefan Roese <sr@denx.de>
24 lines
477 B
Makefile
24 lines
477 B
Makefile
# (C) Copyright 2019 Marvell, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += lowlevel_init.o
|
|
obj-y += cache.o
|
|
obj-y += clock.o
|
|
obj-y += cpu.o
|
|
obj-y += dram.o
|
|
obj-y += cvmx-coremask.o
|
|
obj-y += cvmx-bootmem.o
|
|
obj-y += bootoctlinux.o
|
|
|
|
# QLM related code
|
|
obj-y += cvmx-helper-cfg.o
|
|
obj-y += cvmx-helper-fdt.o
|
|
obj-y += cvmx-helper-jtag.o
|
|
obj-y += cvmx-helper-util.o
|
|
obj-y += cvmx-helper.o
|
|
obj-y += cvmx-pcie.o
|
|
obj-y += cvmx-qlm.o
|
|
obj-y += octeon_fdt.o
|
|
obj-y += octeon_qlm.o
|