mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
This will be used by bhyve to build a device tree when booting arm64
guests.
Reviewed by: corvink, jhb
MFC after: 1 week
Sponsored by: Innovate UK
Differential Revision: https://reviews.freebsd.org/D40994
(cherry picked from commit f29af8618b)
29 lines
373 B
Makefile
29 lines
373 B
Makefile
LIB= fdt
|
|
|
|
INTERNALLIB=
|
|
|
|
LIBFDTSRCDIR= ${SRCTOP}/sys/contrib/libfdt
|
|
.PATH: ${LIBFDTSRCDIR}
|
|
|
|
SRCS= \
|
|
fdt.c \
|
|
fdt_addresses.c \
|
|
fdt_empty_tree.c \
|
|
fdt_overlay.c \
|
|
fdt_ro.c \
|
|
fdt_rw.c \
|
|
fdt_strerror.c \
|
|
fdt_sw.c \
|
|
fdt_wip.c
|
|
|
|
INCS= \
|
|
fdt.h \
|
|
libfdt.h \
|
|
ibfdt_env.h
|
|
|
|
CFLAGS+= -I${LIBFDTSRCDIR}
|
|
WARNS?= 2
|
|
|
|
MAN=
|
|
|
|
.include <bsd.lib.mk>
|