From: Daniel Schwierzeck Date: Mon, 21 Dec 2015 15:35:13 +0000 (+0100) Subject: MIPS: Kconfig: refactor machine setup X-Git-Tag: v2016.03-rc1~299^2~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6479b691d73ca12a925032a056e5825ae9076d14;p=oweals%2Fu-boot.git MIPS: Kconfig: refactor machine setup Refactor machine setup like it is done on ARM. While on it, also support "include --- diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 43f0f5c504..6a9f798d56 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -7,4 +7,9 @@ head-y := arch/mips/cpu/start.o libs-y += arch/mips/cpu/ libs-y += arch/mips/lib/ -libs-$(CONFIG_SOC_AU1X00) += arch/mips/mach-au1x00/ +machine-$(CONFIG_SOC_AU1X00) += au1x00 + +machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y)) +libs-y += $(machdirs) + +PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))