Makefile 741 B

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: GPL-2.0+
  2. ifdef CONFIG_SPL_BUILD
  3. obj-y += boards.o
  4. obj-y += spl_board_init.o
  5. obj-y += memconf.o
  6. obj-y += bcu/
  7. obj-$(CONFIG_SPL_MMC_SUPPORT) += mmc-boot-mode.o
  8. else
  9. obj-$(CONFIG_DISPLAY_CPUINFO) += cpu-info.o
  10. obj-y += dram_init.o
  11. obj-y += board_init.o
  12. obj-$(CONFIG_ARCH_UNIPHIER_V8_MULTI) += base-address.o
  13. obj-$(CONFIG_BOARD_LATE_INIT) += board_late_init.o
  14. ifndef CONFIG_SYSRESET
  15. obj-y += reset.o
  16. endif
  17. obj-$(CONFIG_MICRO_SUPPORT_CARD) += micro-support-card.o
  18. obj-$(CONFIG_MMC) += mmc-first-dev.o
  19. obj-y += fdt-fixup.o
  20. endif
  21. obj-y += soc-info.o
  22. obj-y += boot-device/
  23. obj-y += clk/
  24. obj-y += dram/
  25. obj-$(CONFIG_DEBUG_UART_UNIPHIER) += debug-uart/
  26. obj-$(CONFIG_CPU_V7A) += arm32/
  27. obj-$(CONFIG_ARM64) += arm64/