From 5e24bb0e9d37b83181764992ca28be769ccce058 Mon Sep 17 00:00:00 2001 From: Kyle Yan Date: Tue, 3 Oct 2017 11:58:08 -0700 Subject: [PATCH] scripts: Makefile: Change output overlay from .dtb to .tmp If the output overlayed file has the .dtb extension, then the build system may interpret the overlayed file as a SOC DTB file which will result in the final kernel image including properties from the board files. Change-Id: I857d5dc731b1bbcd880a7543a437e10f4f9bf912 Signed-off-by: Kyle Yan --- scripts/Makefile.dtbo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Makefile.dtbo b/scripts/Makefile.dtbo index ce83b35452ba..2b66e54c3f9c 100644 --- a/scripts/Makefile.dtbo +++ b/scripts/Makefile.dtbo @@ -11,7 +11,7 @@ dtbo := $(addprefix $(obj)/,$(dtbo)) ifneq ($(DTC_OVERLAY_TEST_EXT),) DTC_OVERLAY_TEST = $(DTC_OVERLAY_TEST_EXT) quiet_cmd_dtbo_verify = VERIFY $@ -cmd_dtbo_verify = $(DTC_OVERLAY_TEST) $(addprefix $(obj)/,$($(@F)-base)) $@ $(dot-target).dtb +cmd_dtbo_verify = $(DTC_OVERLAY_TEST) $(addprefix $(obj)/,$($(@F)-base)) $@ $(dot-target).tmp else cmd_dtbo_verify = true endif