From Fedora Project Wiki

m (Docs/CustomKernel moved to Building a custom kernel: Moving all documentation to the flat namespace; makes it findable in the wiki search; follows Help:Wiki_structure guidelines.)
(Install additional needed kernel package)
 
(161 intermediate revisions by 50 users not shown)
Line 1: Line 1:
== Building a Kernel from the src RPM ==
[[Category:Documentation]][[Category:Tutorials]]
{{Admon/warning | Note these instructions *only* apply to Fedora 8 and later releases}}
{{autolang|base=yes}}
 
This document provides instructions for advanced users who want to rebuild the kernel from some source. Note, however, that when building or running any such kernel, one should NOT expect support from the Fedora kernel team; you're pretty much on your own here if something doesn't work as you'd hoped or expected. But hey, you're an advanced user, so you can handle it, right?  Anyway, advanced users build custom kernels for a variety of reasons:


This document provides instructions to advanced users who want to rebuild the kernel.  Advanced users build custom kernels for a variety of reasons:
* To apply patches for testing that they either generated or obtained from another source
* To apply patches for testing that they either generated or obtained from another source
* To reconfigure the existing kernel
* To reconfigure the existing kernel
* To learn more about the kernel and kernel development
* To learn more about the kernel and kernel development


These instructions can also be used for simply preparing the kernel source tree.


Before starting, make sure the system has all the necessary packages installed, including the following:
== Dependencies for building kernels ==
Not all of these will apply to all methods but this provides a good dependency list of items to install


* <code>rpmdevtools</code>
<code> # sudo dnf install fedpkg fedora-packager rpmdevtools ncurses-devel pesign grubby</code>
* <code>yum-utils</code>


To install these packages, use the following command:
Give the following command from the top directory of the kernel source tree once you have checked it out


<pre>su -c 'yum install yum-utils rpmdevtools'
<code> # sudo dnf builddep kernel.spec</code>
</pre>
 
if you plan to run 'make xconfig'
 
<code> # sudo dnf install qt5-qtbase-devel libXi-devel gcc-c++</code>
 
Also make sure you add the user doing the build to /etc/pesign/users and run the authorize user script:
 
<code># sudo /usr/libexec/pesign/pesign-authorize</code>
 
It should be noted that pesign pesign-rh-test-certs gets pulled in automatically for some, but not for everyone, it depends on how you installed pesign.  It is best to make sure that you have it installed.
 
{{admon/note|pesign|Also note that <code>pesign</code> is applicable only for UEFI platforms (x86, arm, aarch64), it's not used on eg. ppc64le or s390x.}}
 
{{admon/note|dnf versus yum|As of Fedora 22[https://docs.fedoraproject.org/en-US/Fedora/22/html/Release_Notes/] [[dnf]] has replaced [[yum]] as the default package manager. In the event you are building a kernel for an older system you will either have to install dnf or substitute <code>yum</code> for <code>dnf</code> and/or <code>yumdownloader</code> from the <code>yum-utils</code> package.}}
 
== Building a Kernel from the Fedora source tree ==
 
Make sure you have installed all dependencies
 
<code> $ fedpkg clone kernel </code>
 
you will likely need to checkout the source anonymously unless you have an Fedora developer account
 
<code> $ fedpkg clone -a kernel </code>
 
As of the time of this wiki writing, the kernel is managed using git. Each fedora release is a separate branch. rawhide tracks master. To get the tree for a particular release, you can use git checkout from the top of your newly created source tree.
 
e.g. for fedora 23,
 
<code> $ git checkout origin/f23 </code>
 
You can now make whatever changes / customizations you need before generating the rpms and installing them. To avoid conflicts you may want to consider changing
 
<code> # define buildid .local </code>
 
to e.g.
 
<code> %define buildid .foobar </code>
 
in <code>kernel.spec</code>.
 
Whatever you choose instead of foobar will show up in the name of the generated rpm's and will also show up in the GRUB boot menu.
 
When finished, generate the appropriate rpms with
 
<code> $ fedpkg local </code>


=== Get the Source ===
The rpms will be generated in a subdirectory $ARCH which can then be installed:
{{Admon/warning |Do Not Build Packages as <code>root</code>. | Building packages as <code>root</code> is inherently dangerous and not required, even for the kernel.  The following instructions allow any normal user to install and build kernels from the source packages.}}


# Prepare a RPM package building environment in your home directory.  Run the following command: <pre>rpmdev-setuptree</pre>
<pre>$ sudo dnf install --nogpgcheck \
# Download the <code>kernel-<version>.src.rpm</code> file. Enable the appropriate source repositories with the <code>--enablerepo</code> switch.<pre>yumdownloader --source kernel</pre>
  ./x86_64/kernel-modules-core-$version.rpm \
# Install build dependencies for the kernel source with the <code>yum-builddep</code> command (root is required to install these packages):<pre>su -c 'yum-builddep kernel-<version>.src.rpm'</pre>
  ./x86_64/kernel-core-$version.rpm \
# Install <code>kernel-<version>.src.rpm</code> with the following command:<pre>rpm -Uvh kernel-<version>.src.rpm</pre>This command writes the RPM contents into <code>${HOME}/rpmbuild/SOURCES</code> and <code>${HOME}/rpmbuild/SPECS</code>, where <code>${HOME}</code> is your home directory.  It is safe to ignore any messages similar to the following:
  ./x86_64/kernel-modules-$version.rpm \
<pre>warning: user kojibuilder does not exist - using root
  ./x86_64/kernel-$version.rpm
warning: group kojibuilder does not exist - using root
</pre>
</pre>


{{Admon/warning | Space Required. The full kernel building process requires several gigabytes of extra space on the file system containing your home directory.}}
After installing the packages, the kernel will appear in the GRUB menu after next reboot. To uninstall, boot into a kernel different from the one to be uninstalled and do
 
<code>
$ sudo dnf remove kernel-core-$version
</code>


=== Prepare the Kernel Source Tree ===
A complete walkthrough could look like this:
This step expands all of the source code files for the kernel. This is required to view the code, edit the code, or to generate a patch.


1. Prepare the kernel source tree using the following commands:
<pre>sudo dnf install fedpkg fedora-packager rpmdevtools ncurses-devel pesign grubby
<pre>cd ~/rpmbuild/SPECS
sudo dnf install qt5-qtbase-devel libXi-devel gcc-c++
rpmbuild -bp --target=`uname -m` kernel.spec
sudo bash -c "echo $USER >> /etc/pesign/users"
sudo /usr/libexec/pesign/pesign-authorize
fedpkg clone -a kernel
cd kernel
git fetch
git switch f34
sed -i 's/# define buildid .local/%define buildid .foobar/g' kernel.spec
sudo dnf builddep kernel.spec
fedpkg local
cd x86_64
sudo dnf install --nogpgcheck \
  kernel-core-5.17.12-100.foobar.fc34.x86_64.rpm \
  kernel-modules-5.17.12-100.foobar.fc34.x86_64.rpm \
  kernel-5.17.12-100.foobar.fc34.x86_64.rpm
</pre>
</pre>


The kernel source tree is now located in the <code>~/rpm/BUILD/kernel-<version>/linux-<version>.<arch></code> directory.


=== Copy the Source Tree and Generate a Patch ===
=== Building a non-debugging kernel ===
This step is for applying a patch to the kernel source. If a patch is not needed, proceed to "Configure Kernel Options".


Copy the source tree to preserve the original tree while making changes to the copy:
Branched kernels are built with debugging enabled by default in the early stages of the release to assist developers. To make a kernel with debugging information disabled, you can follow the above instructions to check out and do:


<pre>
<code> $ make release </code>
cp -rv ~/rpmbuild/BUILD/kernel-2.6.$ver/linux-2.6.$ver.$arch ~/rpmbuild/BUILD/kernel-2.6.$ver.orig
cp -alv ~/rpmbuild/BUILD/kernel-2.6.$ver.orig ~/rpmbuild/BUILD/kernel-2.6.$ver.new
</pre>


{{Admon/warning | The second <code>cp</code> command hardlinks the <code>.orig</code> and <code>.new</code> trees to make <code>diff</code> run faster.  Most text editors know how to break the hardlink correctly to avoid problems.}}
<code> $ fedpkg local </code>


Make changes directly to the code in the <code>.new</code> source tree, or copy in a modified file. This file might come from a developer who has requested a test, from the upstream kernel sources, or from a different distribution.
=== Enabling config options ===


After the <code>.new</code> source tree is modified, generate a patch. To generate the patch, run <code>diff</code> against the entire <code>.new</code> and <code>.orig</code> source trees with the following command:
If there are configuration options that need to be adjusted for your build, you can add changes in the kernel-local file. These changes will get picked up when you build.


<pre>
=== Updating ===
cd ~/rpmbuild/BUILD
diff -uNrp kernel-2.6.x.orig kernel-2.6.x.new > ../SOURCES/linux-2.6-my-new-patch.patch
</pre>


Replace 'linux-2.6-my-new-patch.patch' with the desired name for the new patch.


{{Admon/warning | For more information on patching refer to the man pages for <code>diff(1)</code> and <code>patch(1)</code>.}}
* <code> $ cd kernel </code>
* <code> kernel $ git status </code>
** your tree will be dirty in the configs and kernel.spec
* <code> kernel $ git stash </code>
** puts aside your changes so your tree will be clean
* <code> kernel $ git pull origin </code>
** update to the latest tree from fedpkg git


=== Configure Kernel Options ===
Now you can run whatever other commands you want (e.g. make release)
This step is for modifying the options the kernel is configured with. This step is optional. If no configuration changes are needed, proceed to "Prepare Build Files".
1. Change to the kernel source tree directory:


<pre>cd ~/rpmbuild/BUILD/kernel-<version>/linux-<version>.<arch>/
== Building a kernel from the exploded git trees ==
</pre>


1. Select the desired configuration file from <code>~/rpmbuild/BUILD/kernel-<version>/linux-<version>.<arch>/configs</code>. Copy the desired config file to <code>~/rpmbuild/BUILD/kernel-<version>/linux-<version>.<arch>/.config</code>:
Fedora maintains a git tree containing Fedora patches applied on top of the vanilla sources.


<pre>cp configs/<desired-config-file> .config
<code> $ git clone https://gitlab.com/cki-project/kernel-ark </code>
</pre>


1. Run the following command:
<code> $ git checkout -b my_branch kernel-4.7.4-200.fc24</code>


<pre>make oldconfig
You can now build the kernel following regular kernel instructions. This tree is useful for generating patches that can be applied to the kernel.spec.
</pre>


1. Run the following command, selecting and saving the desired kernel options:
== Building a Kernel from the source RPM ==


<pre>make menuconfig
Instructions for this are on a [[Building_a_custom_kernel/Source_RPM | separate page]]. In general, you should use one of the other methods for building the kernel which are much easier.
</pre>


1. Add a new line to the top of the config file that contains the hardware platform the kernel is built for (the output of <code>uname -i</code>). The line is preceded by a <code>#</code> sign. For example, an x86_64 machine would have the following line added to the top of the config file:
== Building Only Kernel Modules (Out Of Tree Modules) ==


<pre># x86_64
{{Admon/warning | This section needs to be updated and fleshed out}}
</pre>


1. Copy the config file to <code>~/rpmbuild/SOURCES/</code>:
This section is for users who are only interested in working on a kernel module, and who do not wish to build an entire custom kernel. It is not necessary to download and rebuild the entire kernel in order to build a module.  To build a module for the currently running kernel, only the matching <code>kernel-devel</code> package is required.  Run the following command to install the <code>kernel-devel</code> package using <code>dnf</code>.


<pre>cp .config ~/rpmbuild/SOURCES/config-<arch>
<pre>su -c 'dnf install kernel-devel'
</pre>
</pre>


=== Prepare Build Files ===
{{Admon/note | You may need to install 'kernel-PAE-devel' if you are using the PAE kernel}}
This step makes the necessary changes to the <code>kernel.spec</code> file. This step is required for building a custom kernel.


1. Change to the <code>~/rpmbuild/SPECS</code> directory:
You can build against any kernel version, as long as you have <code>kernel</code> and <code>kernel-devel</code> packages installed for that version. The rest of this section assumes we're building for the running kernel; if not, replace <code>`uname -r`</code> with the desired version number.


<pre>cd ~/rpmbuild/SPECS
As a simple example, to build the <code>foo.ko</code> module from <code>foo.c</code>, create the following <code>Makefile</code> in the directory containing the <code>foo.c</code> file:
</pre>


1. Open the <code>kernel.spec</code> file for editing.
<pre>obj-m := foo.o
1. Give the kernel a unique name. This is important to ensure the custom kernel is not confused with any released kernel. Add a unique string to the kernel name by changing the 'buildid' line. Optionally, change ".local" to your initials, a bug number, the date or anything other unique string.


Change this line:
KDIR  := /lib/modules/$(shell uname -r)/build
<pre>
PWD  := $(shell pwd)
#% define buildid .local
</pre>


To this (note the extra space is removed in addition to the pound sign):
default:
<pre>
[TAB]$(MAKE) -C $(KDIR) M=$(PWD) modules
%define buildid .<custom_text>
</pre>
</pre>
[TAB] Denotes a tab character which must come first for makefile lines containing commands.


1. If you generated a patch, add the patch to the <code>kernel.spec</code> file, preferably at the end of all the existing patches and clearly commented.
Then, issue the <code>make</code> command to build the <code>foo.ko</code> module.


<pre># cputime accounting is broken, revert to 2.6.22 version
The above is a helpful local Makefile wrapper invoking kbuild; in general you can simply do things like
Patch2220: linux-2.6-cputime-fix-accounting.patch


Patch9999: linux-2.6-samfw-test.patch
<pre># make -C /lib/modules/`uname -r`/build M=`pwd` modules
# make -C /lib/modules/`uname -r`/build M=`pwd` clean
# make -C /lib/modules/`uname -r`/build M=`pwd` modules_install
</pre>
</pre>


The patch then needs to be applied in the patch application section of the spec file. Again, at the end of the existing patch applications and clearly commented.
etc to build those targets.
 
== Building Vanilla upstream kernel ==
 
Sometimes a Fedora developer may ask you to try building and installing an upstream kernel (possibly with a patch added) for testing.
If there are multiple iterations, it may be quicker for you to do this than for the developer to turn around several RPMs.


<pre>
=== Existing Fedora Vanilla packages ===
ApplyPatch linux-2.6-cputime-fix-accounting.patch


ApplyPatch linux-2.6-samfw-test.patch
There is an effort underway for packaging vanilla kernels. [[Kernel_Vanilla_Repositories | See if this meets your needs first]]


=== Getting the sources ===


</pre>
Clone a kernel tree from kernel.org


=== Build the New Kernel ===
{{Admon/note | Tips for developing with kernel.org sources|The README file in the top-level directory provides very good build instructions, including how to direct the build to a particular directory, the necessary make targets, and the order in which to issue them. Save time by reviewing the Documentation directory and its sub-directories containing  informative ".txt" files. View the top level Makefile for kernel version information.}}
This step actually generates the kernel RPM files. This step is required for building a custom kernel.


Use the <code>rpmbuild</code> utility to build the new kernel:
<code> $ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git </code>
This will clone the entire upstream tree. This may take a while depending on your connection speed. (While the tree is syncing, why not take the time to update some steps on this wiki that are inevitably out of date?)


* To build all kernel flavors:
<code> $ cd linux </code>
<pre>rpmbuild -bb --target=`uname -m` kernel.spec
</pre>


* To disable specific kernel flavors from the build (for a faster build):
If you need the stable kernel releases, add the stable remote:


<pre>rpmbuild -bb --without <option> --target=`uname -m` kernel.spec
<code> $ git remote add -f stable git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git </code>
</pre>


Valid values for "option" above include <code>xen</code>, <code>smp</code>, <code>up</code>, <code>pae</code>, <code>kdump</code>, <code>debug</code> and <code>debuginfo</code>. Specifying <code>--without debug</code> strips out some debugging code from the kernels, where specifying <code>--without debuginfo</code> disables the building of the <code>kernel-debuginfo</code> packages.
Double check what baseline is being used and check out a new one if necessary:


* To specify that only a specific kernel should be built:
<code> $ git checkout v4.5.2</code>


<pre>rpmbuild -bb --with <option> --target=`uname -m` kernel.spec
=== Applying patches ===
</pre>


Valid values for "option" above include <code>xenonly</code>, <code>smponly</code>, and <code>baseonly</code>.
==== The patch method ====
If you were asked to apply any patches by the developer, this is the stage at which we would do so.
These would typically be applied using a command something like..


* For example, to build just the kernel and kernel-devel packages, the command would be:
<code> $ cat ~/testpatch.diff  | patch -p1 </code>


<pre>rpmbuild -bb --with baseonly --without debuginfo --target=`uname -m` kernel.spec
If you have to try multiple different patches individually, you can unapply the previous one after testing by adding -R on the end of the above command.
</pre>


The build process takes a long time to complete. A lot of messages will be printed to the screen. These messages can be ignored, unless the build ends with an error. If the build completes successfully, the new kernel packages in the <code>~/rpmbuild/RPMS</code> directory.
==== The git method ====


{{Admon/warning | TO DO | add a troubleshooting section}}
Most developers these days generate patches using git and you can use git to help apply patches. You can do:


==== Following Generic Textbooks ====
<code> $ git am -3 <patch file> </code>


Many of the tutorials, examples, and textbooks about Linux kernel development assume the kernel sources are installed under the <code>/usr/src/linux/</code> directory. If you make a symbolic link, as shown below, you should be able to use those learning materials with the Fedora packages. Install the appropriate kernel sources, as shown earlier, and then run the following command:
This will create a git commit of a single patch in your tree.  


<pre>su -c 'ln -s /usr/src/kernels/<version>.<release>-<arch> /usr/src/linux'
=== Configuring the kernel ===
</pre>
{{admon/note| Potential options to the instructions below|Consider using the make targets "mrproper" and "menuconfig" as specified in the top-level README file.  The "menuconfig" target is an alternative to "oldconfig" and pops up a menu that allows you to easily set virtually all build options. Accepting the defaults is generally fine, although you can use the "General Setup->Local version" option to append a label to your build instead of tweaking "EXTRAVERSION" in the .config file.}}


Enter the <code>root</code> password when prompted.
Chances are that the kernel you are running is older than the one you are about to configure.  This means there will be new options.
There are several possibilities here.
* If the developer has pointed you at a specific config file to use, save it in the linux directory with the filename .config
* You can take your existing .config file by using the command <code>cp /boot/config-`uname -r`* .config</code>
When you run the next step, you'll be asked (potentially lots of) questions about all the new options. Just hitting return 'should' always pick the safe decision for each option. However, it's worth taking care and reading each option, as this isn't always the case, and they may introduce new features your distro isn't capable of running, which may result in a non-booting system.
* FIXME how to grab a rawhide config


=== Install the New Kernel ===
With the config in place, you are now ready to move on to the next step.
This step actually installs the new kernel onto the running system.


To install the new kernel, use the <code>rpm -ivh</code> command, '''not''' the <code>-U</code> or <code>--upgrade</code> options:
=== Building the kernel ===
<code> $EDITOR Makefile </code>
Change the EXTRAVERSION line to add something on the end. For example, if it reads "EXTRAVERSION = -rc5" change it to "EXTRAVERSION = -rc5-dave" (what you choose is only relevant for the final part of this procedure)


<pre>rpm -ivh ~/rpmbuild/RPMS/<arch>/kernel-<version>.<arch>.rpm
<code> $ make oldconfig </code>
</pre>


== Building Only Kernel Modules ==
<code> $ make bzImage </code>


{{Admon/warning | This section needs to be updated and fleshed out}}
<code> $ make modules </code>


This section is for users who are only interested in working on a kernel module, and who do not wish to build an entire custom kernel. It is not necessary to download and rebuild the entire kernel to build a module. To build a module for the currently running kernel, only the <code>kernel-devel</code> package is required. Run the following command to install the <code>kernel-devel</code> package using <code>yum</code>.
(become root)


<pre>su -c 'yum install kernel-devel'
<code> # make modules_install </code>
</pre>


For example, to build the <code>foo.ko</code> module, create the following <code>Makefile</code> in the directory containing the <code>foo.c</code> file:
<code> # make install </code>


<pre>obj-m := foo.o
You have now built and installed a kernel.  It will show up in the grub menu next time you reboot.


KDIR  := /lib/modules/$(shell uname -r)/build
=== Rebuilding ===
PWD  := $(shell pwd)
If you have been asked to try several different things, the procedure once you have already built the tree once is mostly the same. A <code>make clean</code> is recommended between builds. This will leave the .config in place, so you can skip that step above and proceed straight to the <code>make bzImage</code> part of the steps above.  Because we installed ccache in the first step, subsequent builds may go a lot faster as the compiler hits files that haven't changed since the last time it built them.


default:
=== Cleaning up ===
$(MAKE) -C $(KDIR) M=$(PWD) modules
Once you have tested the kernel, and you've booted back to one of your kernels installed from an RPM, you can clean up the files that the above procedure installed by becoming root, and calling these commands. (Be sure to get the kernel version correct!) Remember above, we changed EXTRAVERSION to add a 'tag' to the kernel ?  All the files it installed will have this as part of the filename. So you should be able to use wildcards to delete them safely using commands similar to those below. (Just replace 'dave' with whatever tag you chose)
<pre>
rm -f /boot/config-2.6.*dave* /boot/initrd-2.6.*dave* /boot/vmlinuz-*dave* /boot/System.map-*dave* /boot/loader/entries/*dave*
rm -rf /lib/modules/2.6*dave*
</pre>
Finally, you will need to remove the kernel as an option to your bootloader. This will change from architecture to architecture. For x86, (as root), edit /boot/grub2/grub.cfg or /boot/efi/EFI/fedora/grub.cfg if you have EFI enabled and delete the four lines relating to your kernel (They should be easy to spot, they'll be the ones with your tag). They'll look something like this..
<pre>
title Fedora Core (2.6.22-rc3-dave)
root (hd0,0)
kernel /vmlinuz-2.6.22-rc3-dave ro root=/dev/md0
initrd /initrd-2.6.22-rc3-dave.img
</pre>
</pre>
Then, issue the <code>make</code> command to build the <code>foo.ko</code> module.

Latest revision as of 22:22, 19 October 2023

This document provides instructions for advanced users who want to rebuild the kernel from some source. Note, however, that when building or running any such kernel, one should NOT expect support from the Fedora kernel team; you're pretty much on your own here if something doesn't work as you'd hoped or expected. But hey, you're an advanced user, so you can handle it, right? Anyway, advanced users build custom kernels for a variety of reasons:

  • To apply patches for testing that they either generated or obtained from another source
  • To reconfigure the existing kernel
  • To learn more about the kernel and kernel development


Dependencies for building kernels

Not all of these will apply to all methods but this provides a good dependency list of items to install

# sudo dnf install fedpkg fedora-packager rpmdevtools ncurses-devel pesign grubby

Give the following command from the top directory of the kernel source tree once you have checked it out

# sudo dnf builddep kernel.spec

if you plan to run 'make xconfig'

# sudo dnf install qt5-qtbase-devel libXi-devel gcc-c++

Also make sure you add the user doing the build to /etc/pesign/users and run the authorize user script:

# sudo /usr/libexec/pesign/pesign-authorize

It should be noted that pesign pesign-rh-test-certs gets pulled in automatically for some, but not for everyone, it depends on how you installed pesign. It is best to make sure that you have it installed.

Note.png
pesign
Also note that pesign is applicable only for UEFI platforms (x86, arm, aarch64), it's not used on eg. ppc64le or s390x.
Note.png
dnf versus yum
As of Fedora 22[1] dnf has replaced yum as the default package manager. In the event you are building a kernel for an older system you will either have to install dnf or substitute yum for dnf and/or yumdownloader from the yum-utils package.

Building a Kernel from the Fedora source tree

Make sure you have installed all dependencies

$ fedpkg clone kernel

you will likely need to checkout the source anonymously unless you have an Fedora developer account

$ fedpkg clone -a kernel

As of the time of this wiki writing, the kernel is managed using git. Each fedora release is a separate branch. rawhide tracks master. To get the tree for a particular release, you can use git checkout from the top of your newly created source tree.

e.g. for fedora 23,

$ git checkout origin/f23

You can now make whatever changes / customizations you need before generating the rpms and installing them. To avoid conflicts you may want to consider changing

# define buildid .local

to e.g.

%define buildid .foobar

in kernel.spec.

Whatever you choose instead of foobar will show up in the name of the generated rpm's and will also show up in the GRUB boot menu.

When finished, generate the appropriate rpms with

$ fedpkg local

The rpms will be generated in a subdirectory $ARCH which can then be installed:

$ sudo dnf install --nogpgcheck \
   ./x86_64/kernel-modules-core-$version.rpm \
   ./x86_64/kernel-core-$version.rpm \
   ./x86_64/kernel-modules-$version.rpm \
   ./x86_64/kernel-$version.rpm

After installing the packages, the kernel will appear in the GRUB menu after next reboot. To uninstall, boot into a kernel different from the one to be uninstalled and do

$ sudo dnf remove kernel-core-$version

A complete walkthrough could look like this:

sudo dnf install fedpkg fedora-packager rpmdevtools ncurses-devel pesign grubby
sudo dnf install qt5-qtbase-devel libXi-devel gcc-c++
sudo bash -c "echo $USER >> /etc/pesign/users"
sudo /usr/libexec/pesign/pesign-authorize
fedpkg clone -a kernel
cd kernel
git fetch
git switch f34
sed -i 's/# define buildid .local/%define buildid .foobar/g' kernel.spec
sudo dnf builddep kernel.spec
fedpkg local
cd x86_64
sudo dnf install --nogpgcheck \
  kernel-core-5.17.12-100.foobar.fc34.x86_64.rpm \
  kernel-modules-5.17.12-100.foobar.fc34.x86_64.rpm \
  kernel-5.17.12-100.foobar.fc34.x86_64.rpm


Building a non-debugging kernel

Branched kernels are built with debugging enabled by default in the early stages of the release to assist developers. To make a kernel with debugging information disabled, you can follow the above instructions to check out and do:

$ make release

$ fedpkg local

Enabling config options

If there are configuration options that need to be adjusted for your build, you can add changes in the kernel-local file. These changes will get picked up when you build.

Updating

  • $ cd kernel
  • kernel $ git status
    • your tree will be dirty in the configs and kernel.spec
  • kernel $ git stash
    • puts aside your changes so your tree will be clean
  • kernel $ git pull origin
    • update to the latest tree from fedpkg git

Now you can run whatever other commands you want (e.g. make release)

Building a kernel from the exploded git trees

Fedora maintains a git tree containing Fedora patches applied on top of the vanilla sources.

$ git clone https://gitlab.com/cki-project/kernel-ark

$ git checkout -b my_branch kernel-4.7.4-200.fc24

You can now build the kernel following regular kernel instructions. This tree is useful for generating patches that can be applied to the kernel.spec.

Building a Kernel from the source RPM

Instructions for this are on a separate page. In general, you should use one of the other methods for building the kernel which are much easier.

Building Only Kernel Modules (Out Of Tree Modules)

Warning.png
This section needs to be updated and fleshed out

This section is for users who are only interested in working on a kernel module, and who do not wish to build an entire custom kernel. It is not necessary to download and rebuild the entire kernel in order to build a module. To build a module for the currently running kernel, only the matching kernel-devel package is required. Run the following command to install the kernel-devel package using dnf.

su -c 'dnf install kernel-devel'
Note.png
You may need to install 'kernel-PAE-devel' if you are using the PAE kernel

You can build against any kernel version, as long as you have kernel and kernel-devel packages installed for that version. The rest of this section assumes we're building for the running kernel; if not, replace uname -r with the desired version number.

As a simple example, to build the foo.ko module from foo.c, create the following Makefile in the directory containing the foo.c file:

obj-m := foo.o

KDIR  := /lib/modules/$(shell uname -r)/build
PWD   := $(shell pwd)

default:
[TAB]$(MAKE) -C $(KDIR) M=$(PWD) modules

[TAB] Denotes a tab character which must come first for makefile lines containing commands.

Then, issue the make command to build the foo.ko module.

The above is a helpful local Makefile wrapper invoking kbuild; in general you can simply do things like

# make -C /lib/modules/`uname -r`/build M=`pwd` modules
# make -C /lib/modules/`uname -r`/build M=`pwd` clean
# make -C /lib/modules/`uname -r`/build M=`pwd` modules_install

etc to build those targets.

Building Vanilla upstream kernel

Sometimes a Fedora developer may ask you to try building and installing an upstream kernel (possibly with a patch added) for testing. If there are multiple iterations, it may be quicker for you to do this than for the developer to turn around several RPMs.

Existing Fedora Vanilla packages

There is an effort underway for packaging vanilla kernels. See if this meets your needs first

Getting the sources

Clone a kernel tree from kernel.org

Note.png
Tips for developing with kernel.org sources
The README file in the top-level directory provides very good build instructions, including how to direct the build to a particular directory, the necessary make targets, and the order in which to issue them. Save time by reviewing the Documentation directory and its sub-directories containing informative ".txt" files. View the top level Makefile for kernel version information.

$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git This will clone the entire upstream tree. This may take a while depending on your connection speed. (While the tree is syncing, why not take the time to update some steps on this wiki that are inevitably out of date?)

$ cd linux

If you need the stable kernel releases, add the stable remote:

$ git remote add -f stable git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git

Double check what baseline is being used and check out a new one if necessary:

$ git checkout v4.5.2

Applying patches

The patch method

If you were asked to apply any patches by the developer, this is the stage at which we would do so. These would typically be applied using a command something like..

$ cat ~/testpatch.diff | patch -p1

If you have to try multiple different patches individually, you can unapply the previous one after testing by adding -R on the end of the above command.

The git method

Most developers these days generate patches using git and you can use git to help apply patches. You can do:

$ git am -3 <patch file>

This will create a git commit of a single patch in your tree.

Configuring the kernel

Note.png
Potential options to the instructions below
Consider using the make targets "mrproper" and "menuconfig" as specified in the top-level README file. The "menuconfig" target is an alternative to "oldconfig" and pops up a menu that allows you to easily set virtually all build options. Accepting the defaults is generally fine, although you can use the "General Setup->Local version" option to append a label to your build instead of tweaking "EXTRAVERSION" in the .config file.

Chances are that the kernel you are running is older than the one you are about to configure. This means there will be new options. There are several possibilities here.

  • If the developer has pointed you at a specific config file to use, save it in the linux directory with the filename .config
  • You can take your existing .config file by using the command cp /boot/config-uname -r* .config

When you run the next step, you'll be asked (potentially lots of) questions about all the new options. Just hitting return 'should' always pick the safe decision for each option. However, it's worth taking care and reading each option, as this isn't always the case, and they may introduce new features your distro isn't capable of running, which may result in a non-booting system.

  • FIXME how to grab a rawhide config

With the config in place, you are now ready to move on to the next step.

Building the kernel

$EDITOR Makefile Change the EXTRAVERSION line to add something on the end. For example, if it reads "EXTRAVERSION = -rc5" change it to "EXTRAVERSION = -rc5-dave" (what you choose is only relevant for the final part of this procedure)

$ make oldconfig

$ make bzImage

$ make modules

(become root)

# make modules_install

# make install

You have now built and installed a kernel. It will show up in the grub menu next time you reboot.

Rebuilding

If you have been asked to try several different things, the procedure once you have already built the tree once is mostly the same. A make clean is recommended between builds. This will leave the .config in place, so you can skip that step above and proceed straight to the make bzImage part of the steps above. Because we installed ccache in the first step, subsequent builds may go a lot faster as the compiler hits files that haven't changed since the last time it built them.

Cleaning up

Once you have tested the kernel, and you've booted back to one of your kernels installed from an RPM, you can clean up the files that the above procedure installed by becoming root, and calling these commands. (Be sure to get the kernel version correct!) Remember above, we changed EXTRAVERSION to add a 'tag' to the kernel ? All the files it installed will have this as part of the filename. So you should be able to use wildcards to delete them safely using commands similar to those below. (Just replace 'dave' with whatever tag you chose)

rm -f /boot/config-2.6.*dave* /boot/initrd-2.6.*dave* /boot/vmlinuz-*dave* /boot/System.map-*dave* /boot/loader/entries/*dave*
rm -rf /lib/modules/2.6*dave*

Finally, you will need to remove the kernel as an option to your bootloader. This will change from architecture to architecture. For x86, (as root), edit /boot/grub2/grub.cfg or /boot/efi/EFI/fedora/grub.cfg if you have EFI enabled and delete the four lines relating to your kernel (They should be easy to spot, they'll be the ones with your tag). They'll look something like this..

title Fedora Core (2.6.22-rc3-dave)
root (hd0,0)
kernel /vmlinuz-2.6.22-rc3-dave ro root=/dev/md0
initrd /initrd-2.6.22-rc3-dave.img