Date: 2025-10-04
Author: Community Contributor (placeholder)
15–30 minutes
- Show how to add or edit lessons in this repository.
- Provide a simple lesson template contributors can copy.
- Create a placeholder lesson so new contributors can see the format.
- Basic familiarity with Git and GitHub (fork, branch, pull request).
This is a short, contributor-oriented lesson that explains how to add lessons to the Linux Kernel Development Roadmap repository. It's intentionally short so new contributors can quickly add or modify content.
- Fork the repository on GitHub.
- Create a new branch for your lesson:
git checkout -b add-lesson-module1-l1-6. - Add a new markdown file under the appropriate module directory (for example
Lessons/Module1/L1.6.md). - Commit your changes and push the branch to your fork.
- Open a Pull Request describing the lesson and any review notes.
# LX.Y — Lesson title
Date: YYYY-MM-DD
Author: Your name
## Estimated time
15–60 minutes
## Objectives
- Objective 1
- Objective 2
## Prerequisites
- Anything the reader should know before starting
## Content
Write the lesson content here. Use subsections, code blocks, and diagrams as needed.
## Exercises
- Try task 1
- Try task 2
## Further reading
- Link to resources
## Contributor notes
- Any notes for reviewers or future editorsThis lesson is a placeholder created so you can see the expected structure. Replace sections above with real content when contributing a new lesson.
Thank you for contributing!