diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2017-03-16 20:02:57 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-03-16 20:02:57 -0700 |
| commit | d2932199db8fb6015250666b062ced88600758e9 (patch) | |
| tree | 44eed4e47eaf9978363edf5adc737d0ed7f7b7ab | |
| parent | ca5b7b47a0aba42264d4cddf881c05954e7ab72d (diff) | |
| parent | bde3dde77b0ebbef532b197e80ee564b92ddbbbe (diff) | |
Merge "arch: arm64: Fix APPENDED_DTB for arm64"
| -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 |
