xref: /aosp_15_r20/bootable/libbootloader/gbl/libfdt/test/overlay_2_by_path.dts (revision 5225e6b173e52d2efc6bcf950c27374fd72adabc)
1/dts-v1/;
2/plugin/;
3
4// re-generate and push test artifacts using ./gen_test_dtb.sh after change in this file
5/ {
6    // change the value of a property added by a previous overlay
7    fragment@1 {
8        target-path = "/dev-2/dev-2.2/dev-2.2.1";
9        __overlay__ {
10            overlay1-new-property = "overlay2-new-property-value";
11        };
12    };
13
14    // add a new property to the node added by a previous overlay
15    fragment@2 {
16        target-path = "/dev-4";
17        __overlay__ {
18            overlay2-root-node-property = "overlay2-root-node-property-value";
19        };
20    };
21};