dtc icon indicating copy to clipboard operation
dtc copied to clipboard

Device Tree Compiler

Results 37 dtc issues
Sort by recently updated
recently updated
newest added

merge_nodes, defined in livetree.c, uses srcpos_extend only for nodes.

The format specifier `PRIx8` for unsigned integers was used with a signed character parameter, yielding unexpected results with values > 0x7F. If you run for instance `dtc -I dts -O...

The `dtc` compiler allows compilation of DTS overlay files which fail when applied with `FDT_ERR_NOTFOUND`. I discovered this issue first with a Raspberry Pi overlay and reported the issue with...

Hi, I'm bringing back to life ["Device Tree Visualizer"](https://github.com/bmx666/dtv-demo) This project is helpful for our team to analyze complex projects where multiple DTS included and overlayed. I made a few...

``` /dts-v1/; / { clocks = ; ref: poc { phandle = ; #clock-cells = ; }; }; ``` During checks, in function [`check_property_phandle_args`](https://github.com/dgibson/dtc/blob/main/checks.c#L1384), the `0xffffffff` value could trigger an...

file should be legitimate Signed-off-by: juiceRv https://github.com/dgibson/dtc/issues/52#issue-964778171

This function is useful to merge a subset of DT into another DT, for example if some prior-stage firmware passes a DT fragment to U-Boot and U-Boot needs to merge...

The "totalsize" in header is currently checked against "INT_MAX" instead of real length of DTB, this is usually OK for valid DTB. But for "bad" DTB, this is not enough....

With current master the Python test suite fails: ``` FAIL: testHeader (__main__.PyLibfdtBasicTests) Test that we can access the header values ---------------------------------------------------------------------- Traceback (most recent call last): File "./pylibfdt_tests.py", line 295,...

Getting "unknown error"... ``` fdt_register_node ERROR: fdt_get_name -19 - ``` FDT_ERR_ALIGNMENT seems to be missing in fdt_strerror in 1.6.1. Any chance of a 1.6.2 version? :-)