mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
12 lines
272 B
Makefile
12 lines
272 B
Makefile
# DTS files for the 32-bit and 64-bit arm-based Raspberry Pi family of devices
|
|
.if ${MACHINE_CPUARCH} == "arm"
|
|
DTSO= \
|
|
spigen-rpi-b.dtso \
|
|
spigen-rpi2.dtso
|
|
.elif ${MACHINE_CPUARCH} == "aarch64"
|
|
DTSO= \
|
|
spigen-rpi3.dtso \
|
|
spigen-rpi4.dtso
|
|
.endif
|
|
|
|
.include <bsd.dtb.mk>
|