mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
9df16c5937
Add helper code for PVR (Processor Version Register) data handling. It will be used by the UCLASS_CPU driver to populate cpuinfo fields at runtime. Signed-off-by: Ovidiu Panait <ovpanait@gmail.com> Link: https://lore.kernel.org/r/20220531181435.3473549-13-ovpanait@gmail.com Signed-off-by: Michal Simek <michal.simek@amd.com>
11 lines
332 B
Makefile
11 lines
332 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
extra-y = start.o
|
|
obj-y = irq.o
|
|
obj-y += interrupts.o cache.o exception.o timer.o cpuinfo.o
|
|
obj-$(CONFIG_STATIC_RELA) += relocate.o
|
|
obj-$(CONFIG_XILINX_MICROBLAZE0_PVR) += pvr.o
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o
|