00a4815fc6
- Remove CS=2 entry from spigen-rpi2 since it didn't work - Add spigen-rpi3 overlay for Raspberry Pi 3 - Enable rpi overlay modules for GENERIC kernel on aarch64 PR: 233489 Submitted by: bobf@mrp3.com Reviewed by: db MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D16088
13 lines
222 B
Makefile
13 lines
222 B
Makefile
# $FreeBSD$
|
|
# DTS files for the Raspberry Pi-B
|
|
.if ${MACHINE_ARCH:Marmv[67]*} != ""
|
|
DTSO= \
|
|
spigen-rpi-b.dtso \
|
|
spigen-rpi2.dtso
|
|
.elif ${MACHINE_ARCH} == "aarch64"
|
|
DTSO= \
|
|
spigen-rpi3.dtso
|
|
.endif
|
|
|
|
.include <bsd.dtb.mk>
|