* protos/limine: Filter `memory@...` nodes from device trees * docs: Mention removal of `memory@...` nodes for the DTB response
17 lines
328 B
Plaintext
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.";
|
|
};
|
|
};
|
|
};
|