
The Linux Kernel Archives
6 days ago · This site is operated by the Linux Kernel Organization, a 501 (c)3 nonprofit corporation, with support from the following sponsors.
The kernel’s command-line parameters
The parameters listed below are only valid if certain kernel build options were enabled and if respective hardware is present. The text in square brackets at the beginning of each description states the …
The Linux Kernel Archives - Releases
3 days ago · These kernel releases are not hosted at kernel.org and kernel developers can provide no support for them. It is easy to tell if you are running a distribution kernel.
HOWTO do Linux kernel development
The maintainers of the various kernel subsystems — and also many kernel subsystem developers — expose their current state of development in source repositories.
Building External Modules — The Linux Kernel documentation
To build external modules, you must have a prebuilt kernel available that contains the configuration and header files used in the build. Also, the kernel must have been built with modules enabled. If you are …
Linux kernel coding style
This is a short document describing the preferred coding style for the linux kernel. Coding style is very personal, and I won’t force my views on anybody, but this is what goes for anything that I have to be …
Using the tracer for debugging — The Linux Kernel documentation
The tracing infrastructure can be very useful for debugging the Linux kernel. This document is a place to add various methods of using the tracer for debugging.
Kernel Testing Guide — The Linux Kernel documentation
In addition to testing a running kernel, one can also analyze kernel source code directly (at compile time) using static analysis tools. The tools commonly used in the kernel allow one to inspect the whole …
1. Introduction — The Linux Kernel documentation
There are a great many reasons why kernel code should be merged into the official (“mainline”) kernel, including automatic availability to users, community support in many forms, and the ability to …
Message logging with printk — The Linux Kernel documentation
printk() is one of the most widely known functions in the Linux kernel. It’s the standard tool we have for printing messages and usually the most basic way of tracing and debugging.