mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-30 00:21:06 +00:00
d9a4a6223c
Move all au1x00 code out of arch/mips/cpu/mips32 to allow unification of CPU code in a later patch. The reorganization of the SoC specific header files will be done in a later patch series. Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Paul Burton <paul.burton@imgtec.com>
12 lines
338 B
Makefile
12 lines
338 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
head-$(CONFIG_CPU_MIPS32) := arch/mips/cpu/mips32/start.o
|
|
head-$(CONFIG_CPU_MIPS64) := arch/mips/cpu/mips64/start.o
|
|
|
|
libs-$(CONFIG_CPU_MIPS32) += arch/mips/cpu/mips32/
|
|
libs-$(CONFIG_CPU_MIPS64) += arch/mips/cpu/mips64/
|
|
libs-y += arch/mips/lib/
|
|
|
|
libs-$(CONFIG_SOC_AU1X00) += arch/mips/mach-au1x00/
|