Merge "arch: arm64: Fix APPENDED_DTB for arm64"

This commit is contained in:
Linux Build Service Account 2017-03-16 20:02:57 -07:00 committed by Gerrit - the friendly Code Review server
commit d2932199db

View file

@ -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