dtc
dtc copied to clipboard
Device Tree Compiler
A Raspberry Pi user reported (https://github.com/raspberrypi/firmware/issues/1718) that some overlays that work with the Pi tools can't be applied by fdtoverlay (even ignoring the non-standard parameter stuff). After some digging I...
Currently meson generates file /usr/lib/libfdt.so.1.6.0 that does not match Makefile build version.
This series start with a few minor improvments. The fourth patch fixes overlays overwriting phandles in the base dtb and thus breaking references there. The last patch interprets the nodes...
It can be convenient and more readable to use `&label` syntax with fdtget and fdtput, rather than having to know the full path. This small series adds that support by...
c001fc01a43e ("pylibfdt: fix swig build in install") introduced python3-only super() invocation that fails with python2 File "setup.py", line 48, in run return super().run() TypeError: super() takes at least 1 argument...
We currently have both Makefiles and meson scripts either of which can build the project. However, I frequently forget how to properly invoke meson, so it tends to be poorly...
Seems the project's CFLAGS are not used when compiling the python extension's C code via the setup.py script. Some default flags are used instead. Thus pass the CFLAGS explicitly. Unfortunately...
Building the python extension with `meson` is always quiet as it unconditionally passes the `--quiet` option while the Makefile build only sets the `--quiet` options when the build is not...
The dtdiff tool is super useful when trying to compare two different device trees. However, it generally generates a ton of noise flagging all the phandles as changed between the...