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 <pujag@codeaurora.org>
This commit is contained in:
parent
314869eb56
commit
bde3dde77b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue