mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
86ceedd84e
Move the print_cpuinfo function of CONFIG_DISPLAY_CPUINFO into its own source file to support reuse by other board vendors. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Link: https://lore.kernel.org/r/20220620163650.18756-10-stefan.herbrechtsmeier-oss@weidmueller.com Signed-off-by: Michal Simek <michal.simek@amd.com>
13 lines
277 B
Makefile
13 lines
277 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# (C) Copyright 2020 Xilinx, Inc.
|
|
# Michal Simek <michal.simek@xilinx.com>
|
|
#
|
|
|
|
obj-y += board.o
|
|
ifndef CONFIG_ARCH_ZYNQ
|
|
obj-$(CONFIG_DISPLAY_CPUINFO) += cpu-info.o
|
|
endif
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_CMD_FRU) += fru.o fru_ops.o
|
|
endif
|