mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
12 lines
284 B
Makefile
12 lines
284 B
Makefile
|
|
SYSDIR?=${SRCTOP}/sys
|
|
|
|
test-dts:
|
|
.for dts in ${DTS}
|
|
@env MACHINE=`basename ${.CURDIR}` ${SYSDIR}/tools/fdt/make_dtb.sh ${SYSDIR} ${dts} /tmp
|
|
.endfor
|
|
|
|
test-dtso:
|
|
.for dtso in ${DTSO}
|
|
@env MACHINE=`basename ${.CURDIR}` ${SYSDIR}/tools/fdt/make_dtbo.sh ${SYSDIR} ${dtso} /tmp
|
|
.endfor
|