Makefile 585 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # SPDX-License-Identifier: GPL-2.0+
  3. #
  4. ifdef CONFIG_SPL_BUILD
  5. obj-y += init/ bcu/ memconf/
  6. obj-$(CONFIG_MICRO_SUPPORT_CARD) += sbc/
  7. else
  8. obj-$(CONFIG_DISPLAY_CPUINFO) += cpu_info.o
  9. obj-y += dram_init.o
  10. obj-y += board_init.o
  11. obj-$(CONFIG_BOARD_LATE_INIT) += board_late_init.o
  12. obj-y += reset.o
  13. endif
  14. obj-y += boards.o
  15. obj-y += soc_info.o
  16. obj-y += boot-mode/
  17. obj-y += clk/
  18. obj-y += dram/
  19. obj-y += pinctrl-glue.o
  20. obj-$(CONFIG_MICRO_SUPPORT_CARD) += micro-support-card.o
  21. obj-$(CONFIG_DEBUG_UART_UNIPHIER) += debug-uart/
  22. obj-$(CONFIG_CPU_V7) += arm32/
  23. obj-$(CONFIG_ARM64) += arm64/