From 13eb0229c1367106e1407ff17d5a5b62a696999e Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 5 Jun 2014 10:21:39 +0200 Subject: [PATCH] mips: Add builtin dtb to dtb-y Otherwise a rebuild of the dtb file is triggered each build. Signed-off-by: Sascha Hauer --- arch/mips/dts/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/mips/dts/Makefile b/arch/mips/dts/Makefile index 3ee89247e..348b81426 100644 --- a/arch/mips/dts/Makefile +++ b/arch/mips/dts/Makefile @@ -1,6 +1,8 @@ -BUILTIN_DTB := $(patsubst "%",%,$(CONFIG_BUILTIN_DTB_NAME)).dtb.o -obj-$(CONFIG_BUILTIN_DTB) += $(BUILTIN_DTB) +BUILTIN_DTB := $(patsubst "%",%,$(CONFIG_BUILTIN_DTB_NAME)) +obj-$(CONFIG_BUILTIN_DTB) += $(BUILTIN_DTB).dtb.o + +dtb-y += ${BUILTIN_DTB}.dtb targets += dtbs targets += $(dtb-y)