diff options
author | Stefan Roese <sr@denx.de> | 2020-12-11 17:06:07 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2021-04-28 10:05:12 +0200 |
commit | c7cf89791b6fee9504f5a2b7ec94c7091fe1325b (patch) | |
tree | 231e7ccd61014fa7ce07d7cb879b7bb42277f9b4 /arch | |
parent | fc6c9c50d12cd463488c99b866f5443af5004c1d (diff) | |
download | u-boot-c7cf89791b6fee9504f5a2b7ec94c7091fe1325b.zip u-boot-c7cf89791b6fee9504f5a2b7ec94c7091fe1325b.tar.gz u-boot-c7cf89791b6fee9504f5a2b7ec94c7091fe1325b.tar.bz2 |
mips: octeon: Makefile: Enable building of the newly added C files
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/mach-octeon/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/mips/mach-octeon/Makefile b/arch/mips/mach-octeon/Makefile index 3486aa9..40ddab2 100644 --- a/arch/mips/mach-octeon/Makefile +++ b/arch/mips/mach-octeon/Makefile @@ -11,3 +11,14 @@ 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 |