From bde3dde77b0ebbef532b197e80ee564b92ddbbbe Mon Sep 17 00:00:00 2001 From: Puja Gupta Date: Fri, 10 Mar 2017 15:56:46 -0800 Subject: [PATCH] arch: arm64: Fix APPENDED_DTB for arm64 Kernel Image with appended dtb is broken for arm64 since it is symlink to arm. Change-Id: I0a094192f200d02fbddeee694828fd1de1746bf1 Signed-off-by: Puja Gupta --- arch/arm64/boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile index 6fee388eb386..e2ee3ba909eb 100644 --- a/arch/arm64/boot/Makefile +++ b/arch/arm64/boot/Makefile @@ -21,7 +21,7 @@ ifneq ($(DTB_NAMES),) DTB_LIST := $(addsuffix .dtb,$(DTB_NAMES)) DTB_OBJS := $(addprefix $(obj)/dts/,$(DTB_LIST)) else -DTB_OBJS := $(shell find $(obj)/dts/ -name \*.dtb) +DTB_OBJS := $(shell find -L $(obj)/dts/ -name \*.dtb) endif $(obj)/Image: vmlinux FORCE