This repository contains the scripts and patches to build the kernel for SONiC. SONiC uses the same kernel for all platforms. We prefer to out-of-tree kernel platform modules. We accept kernel patches on following conditions:
Platform specific kernel modules are expected to develop out-of-tree kernel modules, provide them in debian packages to be embedded into SONiC ONE image and installed on their platforms.
For all patches, please ensure you have run the patch with checkpatch.pl
and pass it.
Usage:
make DEST=<destination path>
If DEST is not set, package will stay in current directory.
The Debian kernel used with SONiC includes almost all available hardware that can be found on a system using Linux. This increases considerably the time needed to build the kernel Debian image. Since there are many drivers, protocols or filesystems which will never be used on a switch, there is a simple mechanism to remove kernel options which does not require creating a kernel configuration patch. The options which need to be excluded from the kernel are simply listed in a flat text file: patch/kconfig-exclusions
Example:
CONFIG_REISERFS_FS
CONFIG_JFS_FS
CONFIG_XFS_FS
Similarly, there is a mechanism to include some kernel options by listing these options into the flat text file: patch/kconfig-inclusions
Example:
CONFIG_INT340X_THERMAL=m
CONFIG_LOG_BUF_SHIFT=18
If the files patch/kconfig-exclusions and patch/kconfig-inclusions exist, they will be processed after all the kernel patches described in the patch directory have been applied, exclusions being done before inclusions.
Also, the final kernel configuration will be checked to verify that:
During Kernel Upgrades, the maintainer must update the configuration diff in the wiki of this repo. This acts as a guide for keeping track of configuration changes between Kernel upgrades. Applies for minor version upgrades as well
The diff is saved as kconfig-diff-{platform}-{arch}.rst under the artifacts of Azure.sonic-linux-kernel job runs.