2018-07-03 00:15:39 +03:00
<?xml version='1.0'?>
2019-03-14 16:40:58 +03:00
< !DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
2020-11-09 07:23:58 +03:00
<!-- SPDX - License - Identifier: LGPL - 2.1 - or - later -->
2013-02-22 20:18:47 +04:00
2019-03-07 22:49:30 +03:00
<refentry id= "kernel-install"
xmlns:xi="http://www.w3.org/2001/XInclude">
2013-02-22 20:18:47 +04:00
<refentryinfo >
<title > kernel-install</title>
<productname > systemd</productname>
</refentryinfo>
<refmeta >
<refentrytitle > kernel-install</refentrytitle>
<manvolnum > 8</manvolnum>
</refmeta>
<refnamediv >
<refname > kernel-install</refname>
<refpurpose > Add and remove kernel and initramfs images to and from /boot</refpurpose>
</refnamediv>
<refsynopsisdiv >
<cmdsynopsis >
2013-05-03 08:55:20 +04:00
<command > kernel-install</command>
<arg choice= "plain" > COMMAND</arg>
2019-03-07 22:49:30 +03:00
<arg choice= "opt" rep= "repeat" > OPTIONS</arg>
2013-05-03 08:55:20 +04:00
<arg choice= "plain" > <replaceable > KERNEL-VERSION</replaceable> </arg>
2018-12-29 22:01:10 +03:00
<arg choice= "plain" > <replaceable > KERNEL-IMAGE</replaceable> </arg>
2019-01-17 21:06:09 +03:00
<arg choice= "opt" rep= "repeat" > <replaceable > INITRD-FILE</replaceable> </arg>
2013-02-22 20:18:47 +04:00
</cmdsynopsis>
</refsynopsisdiv>
<refsect1 >
<title > Description</title>
2019-03-08 21:21:54 +03:00
<para > <command > kernel-install</command> is used to install and remove kernel and initramfs images to and
from the boot loader partition, referred to as <varname > $BOOT</varname> here. It will usually be one of
2020-07-06 11:49:59 +03:00
<filename > /boot/</filename> , <filename > /efi/</filename> , or <filename > /boot/efi/</filename> , see below.
2013-02-22 20:18:47 +04:00
</para>
2013-05-03 08:55:20 +04:00
<para > <command > kernel-install</command> will execute the files
located in the directory <filename > /usr/lib/kernel/install.d/</filename>
2013-02-22 20:18:47 +04:00
and the local administration directory <filename > /etc/kernel/install.d/</filename> .
2013-05-03 08:55:20 +04:00
All files are collectively sorted and executed in lexical order, regardless of the directory in
2013-06-27 23:51:44 +04:00
which they live. However, files with identical filenames replace each other.
2013-02-22 20:18:47 +04:00
Files in <filename > /etc/kernel/install.d/</filename> take precedence over files with the same name
in <filename > /usr/lib/kernel/install.d/</filename> . This can be used to override a system-supplied
executables with a local file if needed; a symbolic link in <filename > /etc/kernel/install.d/</filename>
with the same name as an executable in <filename > /usr/lib/kernel/install.d/</filename> ,
2016-09-24 16:03:54 +03:00
pointing to <filename > /dev/null</filename> , disables the executable entirely. Executables must have the
2013-07-02 07:44:04 +04:00
extension <literal > .install</literal> ; other extensions are ignored.</para>
2013-02-22 20:18:47 +04:00
2016-09-24 16:03:54 +03:00
<para > An executable should return <constant > 0</constant> on success. It may also
return <constant > 77</constant> to cause the whole operation to terminate
(executables later in lexical order will be skipped).</para>
2013-02-22 20:18:47 +04:00
</refsect1>
<refsect1 >
<title > Commands</title>
<para > The following commands are understood:</para>
<variablelist >
<varlistentry >
2019-01-17 21:06:09 +03:00
<term > <command > add <replaceable > KERNEL-VERSION</replaceable> <replaceable > KERNEL-IMAGE</replaceable> [<replaceable > INITRD-FILE</replaceable> ...]</command> </term>
2013-02-22 20:18:47 +04:00
<listitem >
2018-06-22 19:14:22 +03:00
<para > This command expects a kernel version string and a path to a kernel image file as
2019-03-07 23:18:56 +03:00
arguments. <command > kernel-install</command> calls the executables from
<filename > /usr/lib/kernel/install.d/*.install</filename> and
2018-06-22 19:14:22 +03:00
<filename > /etc/kernel/install.d/*.install</filename> with the following arguments:
2019-03-08 21:21:54 +03:00
<programlisting > add <replaceable > KERNEL-VERSION</replaceable> <filename > $BOOT/<replaceable > MACHINE-ID</replaceable> /<replaceable > KERNEL-VERSION</replaceable> /</filename> <replaceable > KERNEL-IMAGE</replaceable> [<replaceable > INITRD-FILE</replaceable> ...]</programlisting>
2013-05-03 08:55:20 +04:00
</para>
2019-03-07 23:18:56 +03:00
<para > Three default plugins execute the following operations in this case:</para>
2018-06-22 19:14:22 +03:00
<itemizedlist >
2019-03-07 23:18:56 +03:00
<listitem > <para > <filename > 00-entry-directory.install</filename> creates the directory
2019-03-08 21:21:54 +03:00
<filename > $BOOT/<replaceable > MACHINE-ID</replaceable> /<replaceable > KERNEL-VERSION</replaceable> /</filename>
if <filename > $BOOT/<replaceable > MACHINE-ID</replaceable> /</filename> already exists.
2019-03-07 23:18:56 +03:00
</para> </listitem>
2018-06-22 19:14:22 +03:00
<listitem > <para > <filename > 50-depmod.install</filename> runs
2020-06-25 15:37:24 +03:00
<citerefentry project= 'man-pages' > <refentrytitle > depmod</refentrytitle> <manvolnum > 8</manvolnum> </citerefentry> for the
2018-06-22 19:14:22 +03:00
<replaceable > KERNEL-VERSION</replaceable> .</para> </listitem>
<listitem > <para > <filename > 90-loaderentry.install</filename> copies <replaceable > KERNEL-IMAGE</replaceable>
to
2019-03-08 21:21:54 +03:00
<filename > $BOOT/<replaceable > MACHINE-ID</replaceable> /<replaceable > KERNEL-VERSION</replaceable> /linux</filename> .
2019-01-17 21:06:09 +03:00
If an <replaceable > INITRD-FILE</replaceable> is provided, it also copies <replaceable > INITRD-FILE</replaceable>
2018-12-29 22:01:10 +03:00
to
2019-03-08 21:21:54 +03:00
<filename > $BOOT/<replaceable > MACHINE-ID</replaceable> /<replaceable > KERNEL_VERSION</replaceable> /<replaceable > INITRD-FILE</replaceable> </filename> .
2018-06-22 19:14:22 +03:00
It also creates a boot loader entry according to the <ulink
url="https://systemd.io/BOOT_LOADER_SPECIFICATION">Boot Loader Specification</ulink> in
2019-03-08 21:21:54 +03:00
<filename > $BOOT/loader/entries/<replaceable > MACHINE-ID</replaceable> -<replaceable > KERNEL-VERSION</replaceable> .conf</filename> .
2018-06-22 19:14:22 +03:00
The title of the entry is the <replaceable > PRETTY_NAME</replaceable> parameter specified in
<filename > /etc/os-release</filename> or <filename > /usr/lib/os-release</filename> (if the former is
2019-03-07 23:18:56 +03:00
missing), or "Linux <replaceable > KERNEL-VERSION</replaceable> ", if unset.</para>
<para > If the entry directory
2019-03-08 21:21:54 +03:00
<filename > $BOOT/<replaceable > MACHINE-ID</replaceable> /<replaceable > KERNEL-VERSION</replaceable> /</filename>
2019-03-07 23:18:56 +03:00
does not exist, this plugin does nothing.</para> </listitem>
2018-06-22 19:14:22 +03:00
</itemizedlist>
2013-02-22 20:18:47 +04:00
</listitem>
</varlistentry>
<varlistentry >
2013-04-30 20:01:47 +04:00
<term > <command > remove <replaceable > KERNEL-VERSION</replaceable> </command> </term>
2013-05-03 08:55:20 +04:00
<listitem >
2018-06-22 19:14:22 +03:00
<para > This command expects a kernel version string as single argument. This calls executables from
<filename > /usr/lib/kernel/install.d/*.install</filename> and
<filename > /etc/kernel/install.d/*.install</filename> with the following arguments:
2019-03-08 21:21:54 +03:00
<programlisting > remove <replaceable > KERNEL-VERSION</replaceable> <filename > $BOOT/<replaceable > MACHINE-ID</replaceable> /<replaceable > KERNEL-VERSION</replaceable> /</filename> </programlisting>
2013-05-03 08:55:20 +04:00
</para>
2018-06-22 19:14:22 +03:00
<para > Afterwards, <command > kernel-install</command> removes the directory
2019-03-08 21:21:54 +03:00
<filename > $BOOT/<replaceable > MACHINE-ID</replaceable> /<replaceable > KERNEL-VERSION</replaceable> /</filename>
2018-06-22 19:14:22 +03:00
and its contents.</para>
<para > Two default plugins execute the following operations in this case:</para>
<itemizedlist >
<listitem > <para > <filename > 50-depmod.install</filename> removes the files generated by <command > depmod</command> for this kernel again.</para> </listitem>
<listitem > <para > <filename > 90-loaderentry.install</filename> removes the file
2019-03-08 21:21:54 +03:00
<filename > $BOOT/loader/entries/<replaceable > MACHINE-ID</replaceable> -<replaceable > KERNEL-VERSION</replaceable> .conf</filename> .</para> </listitem>
2018-06-22 19:14:22 +03:00
</itemizedlist>
2013-04-30 20:01:47 +04:00
2013-02-22 20:18:47 +04:00
</listitem>
</varlistentry>
</variablelist>
2019-03-08 21:21:54 +03:00
</refsect1>
2013-02-22 20:18:47 +04:00
2019-03-08 21:21:54 +03:00
<refsect1 >
<title > The <varname > $BOOT</varname> partition</title>
<para > The partition where the kernels and <ulink url= "https://systemd.io/BOOT_LOADER_SPECIFICATION" > Boot
Loader Specification</ulink> snippets are located is called <varname > $BOOT</varname> .
<command > kernel-install</command> determines the location of this partition by checking
2020-07-06 11:49:59 +03:00
<filename > /efi/</filename> , <filename > /boot/</filename> , and <filename > /boot/efi/</filename>
2019-03-08 21:21:54 +03:00
in turn. The first location where <filename > $BOOT/loader/entries/</filename> or
<filename > $BOOT/$MACHINE_ID/</filename> exists is used.</para>
2013-02-22 20:18:47 +04:00
</refsect1>
2019-03-07 22:49:30 +03:00
<refsect1 >
<title > Options</title>
<para > The following options are understood:</para>
<variablelist >
<varlistentry >
<term > <option > -v</option> </term>
<term > <option > --verbose</option> </term>
<listitem >
<para > Output additional information about operations being performed.</para>
</listitem>
</varlistentry>
<xi:include href= "standard-options.xml" xpointer= "help" />
</variablelist>
</refsect1>
<refsect1 >
<title > Environment variables</title>
<para > If <option > --verbose</option> is used, <varname > $KERNEL_INSTALL_VERBOSE=1</varname> will be set for
the plugins. They may output additional logs in this case.</para>
</refsect1>
2013-02-22 20:18:47 +04:00
<refsect1 >
<title > Exit status</title>
2016-11-04 15:40:58 +03:00
<para > If every executable returns 0 or 77, 0 is returned, and a non-zero failure code otherwise.</para>
2013-02-22 20:18:47 +04:00
</refsect1>
<refsect1 >
<title > Files</title>
<variablelist >
<varlistentry >
<term >
<filename > /usr/lib/kernel/install.d/*.install</filename>
<filename > /etc/kernel/install.d/*.install</filename>
</term>
<listitem >
2013-07-02 07:44:04 +04:00
<para > Drop-in files which are executed by kernel-install.</para>
2013-02-22 20:18:47 +04:00
</listitem>
</varlistentry>
2013-02-25 22:29:16 +04:00
<varlistentry >
<term >
<filename > /etc/kernel/cmdline</filename>
<filename > /proc/cmdline</filename>
</term>
<listitem >
2018-06-22 19:14:22 +03:00
<para > Read by <filename > 90-loaderentry.install</filename> . The content of the file
<filename > /etc/kernel/cmdline</filename> specifies the kernel command line to use. If that file does not
exist, <filename > /proc/cmdline</filename> is used.</para>
</listitem>
</varlistentry>
<varlistentry >
<term >
<filename > /etc/kernel/tries</filename>
</term>
<listitem >
<para > Read by <filename > 90-loaderentry.install</filename> . If this file exists a numeric value is read from
it and the naming of the generated entry file is slightly altered to include it as
2019-03-08 21:21:54 +03:00
<filename > $BOOT/loader/entries/<replaceable > MACHINE-ID</replaceable> -<replaceable > KERNEL-VERSION</replaceable> +<replaceable > TRIES</replaceable> .conf</filename> . This
2018-06-22 19:14:22 +03:00
is useful for boot loaders such as
<citerefentry > <refentrytitle > systemd-boot</refentrytitle> <manvolnum > 7</manvolnum> </citerefentry> which
implement boot attempt counting with a counter embedded in the entry file name.</para>
2013-02-25 22:29:16 +04:00
</listitem>
</varlistentry>
<varlistentry >
<term >
<filename > /etc/machine-id</filename>
</term>
<listitem >
2020-08-06 23:56:36 +03:00
<para > The content of this file specifies the machine identification
<replaceable > MACHINE-ID</replaceable> . If it cannot read <filename > /etc/machine-id</filename> ,
kernel-install will use "Linux" as the machine ID instead.</para>
2013-02-25 22:29:16 +04:00
</listitem>
</varlistentry>
<varlistentry >
<term >
<filename > /etc/os-release</filename>
2014-06-13 21:45:52 +04:00
<filename > /usr/lib/os-release</filename>
2013-02-25 22:29:16 +04:00
</term>
<listitem >
2013-04-30 20:01:47 +04:00
<para > The content of the file specifies the operating system title <replaceable > PRETTY_NAME</replaceable> .</para>
2013-02-25 22:29:16 +04:00
</listitem>
</varlistentry>
2013-02-22 20:18:47 +04:00
</variablelist>
</refsect1>
<refsect1 >
<title > See Also</title>
<para >
2013-02-25 22:29:16 +04:00
<citerefentry > <refentrytitle > machine-id</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry> ,
<citerefentry > <refentrytitle > os-release</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry> ,
2020-06-25 15:37:24 +03:00
<citerefentry project= 'man-pages' > <refentrytitle > depmod</refentrytitle> <manvolnum > 8</manvolnum> </citerefentry> ,
2018-06-22 19:14:22 +03:00
<citerefentry > <refentrytitle > systemd-boot</refentrytitle> <manvolnum > 7</manvolnum> </citerefentry> ,
2018-10-12 15:00:20 +03:00
<ulink url= "https://systemd.io/BOOT_LOADER_SPECIFICATION" > Boot Loader Specification</ulink>
2013-02-22 20:18:47 +04:00
</para>
</refsect1>
</refentry>