Files
Limine/test/device_tree.dts
Marvin Friedrich af488d66c8 protos/limine: Filter memory@... nodes from device trees (#421)
* protos/limine: Filter `memory@...` nodes from device trees

* docs: Mention removal of `memory@...` nodes for the DTB response
2024-10-18 21:29:17 +02:00

17 lines
328 B
Plaintext

// Example device tree.
/dts-v1/;
/ {
soc {
limine_node: limine@deadbeef {
reg = <0xdeadbeef 0x1000>;
label = "KANKER";
};
fake_memory: memory@ffff0000 {
reg = <0xffff0000 0xffff>;
label = "This node will be removed by Limine.";
};
};
};