Example of incorrect behavior: ``` dt = fdt.parse_dtb(image) ddd = dt.get_node("/aaa/bbb/ccc/ddd") print("ddd.path =", ddd.path) #> ddd.path = /aaa/bbb/ccc ddd = dt.get_node(ddd.path) print("ddd.name =", ddd.name) #> ddd.name = ccc print("ddd.path =", ddd.path) #> ddd.path = /aaa/bbb ``` Here's a way to fix this behavior: https://github.com/openwrt-xiaomi/xmir-patcher/commit/b782ca14267b8aceccb865c77bf12025b4e8882e
Example of incorrect behavior:
Here's a way to fix this behavior: openwrt-xiaomi/xmir-patcher@b782ca1