We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A set of syscalls is required to allow the initialization application to inspect the InitRD, and to deal with kernel modules.
InitRdList
InitRdFind
InitRdGetInfo
InitRdLoad
KmodList
KmodGetInfo
KmodLoad
KmodUnload
The text was updated successfully, but these errors were encountered:
vercas
No branches or pull requests
A set of syscalls is required to allow the initialization application to inspect the InitRD, and to deal with kernel modules.
InitRdList
- Lists all entries in a directory within the InitRD.InitRdFind
- Attempts to get a handle on an item within the InitRD.InitRdGetInfo
- Retrieves information about the given InitRD item from its handle.InitRdLoad
- Loads the given InitRD item from its handle into the specified chunk of memory.KmodList
- Lists loaded kernel modules (as handles).KmodGetInfo
- Gets information about the given kernel module by handle.KmodLoad
- Loads a given kernel module (from either an InitRD item handle or a chunk of memory), returns handle.KmodUnload
- Unloads the given kernel module by handle.The text was updated successfully, but these errors were encountered: