mirror of
https://github.com/opnsense/src.git
synced 2026-03-11 10:43:03 -04:00
Highlights of this update:
- /__local_fixups__ is now generated to be GPL dtc and libfdt compliant
- Compiling with -@ will now cause dtc to assign phandles to all labelled
nodes
- /include/ and /incbin/ now handle absolute paths correctly
- The manpage now has information about overlays, including how to apply
them and how to generate them
- Syntactic sugar for overlays is now supported, allowing an overlay DTS
like:
=
/dts-v1/;
/plugin/;
&foo {
foo,status = "okay";
};
=
to generate a fragment targetting <&foo>.
11 lines
190 B
Makefile
11 lines
190 B
Makefile
# $FreeBSD$
|
|
|
|
PROG_CXX=dtc
|
|
SRCS= dtc.cc input_buffer.cc string.cc dtb.cc fdt.cc checking.cc
|
|
MAN= dtc.1
|
|
|
|
CXXFLAGS+= -std=c++11 -fno-rtti -fno-exceptions
|
|
|
|
NO_SHARED?=NO
|
|
|
|
.include <bsd.prog.mk>
|