mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
4f5554c6e5
Replace CONFIG_MPC8641 with ARCH_MPC8641 in Kconfig and clean up existing macros. Signed-off-by: York Sun <york.sun@nxp.com>
24 lines
551 B
Makefile
24 lines
551 B
Makefile
#
|
|
# Copyright 2007 Freescale Semiconductor, Inc.
|
|
# (C) Copyright 2002,2003 Motorola Inc.
|
|
# Xianghua Xiao,X.Xiao@motorola.com
|
|
#
|
|
# (C) Copyright 2004 Freescale Semiconductor. (MC86xx Port)
|
|
# Jeff Brown
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
extra-y = start.o
|
|
extra-y += traps.o
|
|
|
|
obj-y += cache.o
|
|
obj-$(CONFIG_MP) += release.o
|
|
|
|
obj-y += cpu.o
|
|
obj-y += cpu_init.o
|
|
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
|
obj-y += interrupts.o
|
|
obj-$(CONFIG_MP) += mp.o
|
|
obj-$(CONFIG_ARCH_MPC8610) += mpc8610_serdes.o
|
|
obj-$(CONFIG_ARCH_MPC8641) += mpc8641_serdes.o
|
|
obj-y += speed.o
|