Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b627b000 authored by Jeevan Shriram's avatar Jeevan Shriram Committed by Gerrit - the friendly Code Review server
Browse files

arch: arm: Fix the DTB_OBJS macro to include vendor dtbs



Fix the DTB_OBJS Makefile variable to includedtbs from inside
vendor.

Change-Id: I57d9fbb97e6dfab3e81dcac38aededfbce82155d
Signed-off-by: default avatarJeevan Shriram <jshriram@codeaurora.org>
parent 1a6f8ce5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ DTB_LIST := $(addsuffix .dtb,$(DTB_NAMES))
else
DTB_LIST := $(dtb-y)
endif
DTB_OBJS := $(addprefix $(obj)/dts/,$(DTB_LIST))
DTB_OBJS := $(shell find $(obj)/dts/ -name \*.dtb)

ifeq ($(CONFIG_XIP_KERNEL),y)