Add missed updates for r301079 and r301084.

This commit is contained in:
bdrewery 2016-05-31 23:12:43 +00:00
parent 31fcbcd300
commit 95d76a3e07

View File

@ -34,7 +34,7 @@
# Search for kernel source tree in standard places. # Search for kernel source tree in standard places.
.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys .for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
.if !defined(SYSDIR) && exists(${_dir}/kern/) .if !defined(SYSDIR) && exists(${_dir}/kern/)
SYSDIR= ${_dir} SYSDIR= ${_dir:tA}
.endif .endif
.endfor .endfor
.if !defined(SYSDIR) || !exists(${SYSDIR}/kern/) .if !defined(SYSDIR) || !exists(${SYSDIR}/kern/)
@ -51,7 +51,7 @@ all: ${DTB}
.if defined(DTS) .if defined(DTS)
.for _dts in ${DTS} .for _dts in ${DTS}
${_dts:R:S/$/.dtb/}: ${_dts} ${_dts:R:S/$/.dtb/}: ${_dts} ${OP_META}
@echo Generating ${.TARGET} from ${_dts} @echo Generating ${.TARGET} from ${_dts}
@${SYSDIR}/tools/fdt/make_dtb.sh ${SYSDIR} ${_dts} ${.OBJDIR} @${SYSDIR}/tools/fdt/make_dtb.sh ${SYSDIR} ${_dts} ${.OBJDIR}
CLEANFILES+=${_dts:R:S/$/.dtb/} CLEANFILES+=${_dts:R:S/$/.dtb/}