-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create trait for defining custom nodes that can be easily extracted from the Fdt
#14
Comments
@repnop -, Any comments? |
Hi! I'm not 100% I understand what you mean, but this crate only supports a read-only view into the given flattened devicetree, as such its not possible to store that information anywhere, so even if it was possible to create your own |
Sorry to have not made it clear.
My case is for virtualization scenario. For example, store kernel image into memory and store its location address and size into FDT throught Chosen node in VMM, as the initramfs does. Then we can get those kernel information in guest firmware/kernel.
I prefer this way,
You mean create a new node in "fdt" (I mean in this repo) to carry what I want? |
Fdt
Co-opting this issue and reusing it for tracking a trait to better define custom nodes so users can more easily access things |
Hello I'm new here and do some development based on this project.
I want to carry some self-defined info inside chosen, like store kernel info inside chosen node. But I get that, chosen node is private and can't be used outside. So, I wonder if it is likely to expose chosen as public or can I add self-defined chosen releated interface to this repo?
The text was updated successfully, but these errors were encountered: