From: Frank Rowand <frank.rowand@xxxxxxxxxxx> Requires a dtc that supports the new syntactic sugar. One such version is commit: 6f4db2fc2354 DTBO magic and dtbo format options in url = https://github.com/pantoniou/dtc $ export PATH="$PATH:/path/dtc/" $ ./overlay_convert_old_to_new bad_a_1.dts bad_b_1.dts No 'target' property in node fragment@0 ERROR: unable to convert bad_a_1.dts Signed-off-by: Frank Rowand <frank.rowand@xxxxxxxxxxx> --- bad_a_1.dts | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 bad_a_1.dts diff --git a/bad_a_1.dts b/bad_a_1.dts new file mode 100644 index 000000000000..b4e26fc8d945 --- /dev/null +++ b/bad_a_1.dts @@ -0,0 +1,36 @@ +/dts-v1/; +/plugin/; + +/ { + fragment@0 { + + __overlay__ { + + i2c1_pins: pinmux_i2c1_pins { + pinctrl-single,pins = < + 0x158 0x72 + 0x15c 0x72 + >; + }; + }; + }; + + fragment@1 { + target = <&i2c1>; + + __overlay__ { + #address-cells = <1>; + #size-cells = <0>; + pinctrl-names = "default"; + pinctrl-0 = <&i2c1_pins>; + clock-frequency = <400000>; + status = "okay"; + + at24@50 { + compatible = "at,24c256"; + pagesize = <64>; + reg = <0x50>; + }; + }; + }; +}; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html