fix symlink bug in dts

This commit is contained in:
George Hotz
2019-09-04 17:48:19 -07:00
committed by Willem Melching
parent 4c82b8a93f
commit 4877a19bbd
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -118,3 +118,4 @@ all.config
# fetched Android config fragments
kernel/configs/android-*.cfg
out

View File

@@ -25,7 +25,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
# Add RTIC DTB to the DTB list if RTIC MPGen is enabled