51154edc56
This will compile the espressobin dts to a dtb file and this will be install in /boot/dtb/marvell/ during installkernel. MFC after: 1 week
14 lines
258 B
Makefile
14 lines
258 B
Makefile
# $FreeBSD$
|
|
# All the dts files for Marvell systems we support.
|
|
|
|
.if ${MACHINE_ARCH} == "armv7"
|
|
DTS= \
|
|
armada-388-clearfog.dts \
|
|
armada-388-gp.dts
|
|
.elif ${MACHINE_ARCH} == "aarch64"
|
|
DTS= \
|
|
marvell/armada-3720-espressobin.dts
|
|
.endif
|
|
|
|
.include <bsd.dtb.mk>
|