diff options
| author | Puja Gupta <pujag@codeaurora.org> | 2017-03-10 15:56:46 -0800 |
|---|---|---|
| committer | Puja Gupta <pujag@codeaurora.org> | 2017-03-10 15:56:46 -0800 |
| commit | bde3dde77b0ebbef532b197e80ee564b92ddbbbe (patch) | |
| tree | a4894ce3e1812826e07df3444cd67fa001ab12d1 | |
| parent | 314869eb56763d34f91d5483b0d510267894fadd (diff) | |
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>
| -rw-r--r-- | arch/arm64/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
