-
Notifications
You must be signed in to change notification settings - Fork 666
docs: add docs for creating kernel modules #11091
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
base: main
Are you sure you want to change the base?
Conversation
A guide specifically for kernel modules that require more steps than typical extensions. Signed-off-by: Justin Garrison <[email protected]>
```yaml | ||
name: my-module | ||
variant: scratch | ||
shell: /bin/sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where does the shell come from with scratch environments? I'm trying to run through these docs myself to make sure all the examples work and getting the error
/bin/sh: line 1: no: No such file or directory
when trying to create the extension. I don't know how this part works.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see the dependency on the base
stage, that's where all tools comes from
Let me know if the steps are incorrect or could be shortened.