mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
19fbdca47b
Add a CPU driver for the MPC83xx architecture. Signed-off-by: Mario Six <mario.six@gdsys.cc>
11 lines
293 B
Makefile
11 lines
293 B
Makefile
#
|
|
# Copyright (c) 2015 Google, Inc
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
obj-$(CONFIG_CPU) += cpu-uclass.o
|
|
|
|
obj-$(CONFIG_ARCH_BMIPS) += bmips_cpu.o
|
|
obj-$(CONFIG_CPU_MPC83XX) += mpc83xx_cpu.o
|
|
obj-$(CONFIG_SANDBOX) += cpu_sandbox.o
|