ac3a84
From 3c3d99309e5e8dfd1c6a7c48dc3810e30b77fefc Mon Sep 17 00:00:00 2001
ac3a84
From: Luca Boccassi <bluca@debian.org>
ac3a84
Date: Tue, 1 Nov 2022 21:55:23 +0000
ac3a84
Subject: [PATCH] docs: DPS and BLS have moved to uapi-group.org
ac3a84
ac3a84
(cherry picked from commit 729a49288153d341d5c4edd5d701421bb766135c)
ac3a84
ac3a84
Related #2138081
ac3a84
---
ac3a84
 docs/BOOT_LOADER_SPECIFICATION.md | 745 +-----------------------------
ac3a84
 docs/DISCOVERABLE_PARTITIONS.md   | 424 +----------------
ac3a84
 2 files changed, 2 insertions(+), 1167 deletions(-)
ac3a84
ac3a84
diff --git a/docs/BOOT_LOADER_SPECIFICATION.md b/docs/BOOT_LOADER_SPECIFICATION.md
ac3a84
index 9188033768..33066b2875 100644
ac3a84
--- a/docs/BOOT_LOADER_SPECIFICATION.md
ac3a84
+++ b/docs/BOOT_LOADER_SPECIFICATION.md
ac3a84
@@ -1,744 +1 @@
ac3a84
----
ac3a84
-title: Boot Loader Specification
ac3a84
-category: Booting
ac3a84
-layout: default
ac3a84
-SPDX-License-Identifier: LGPL-2.1-or-later
ac3a84
----
ac3a84
-
ac3a84
-# The Boot Loader Specification
ac3a84
-
ac3a84
-This document defines a set of file formats and naming conventions that allow
ac3a84
-the boot loader menu entries to be shared between multiple operating systems
ac3a84
-and boot loaders installed on one device.
ac3a84
-
ac3a84
-Operating systems cooperatively manage boot loader menu entry directories that
ac3a84
-contain drop-in files, making multi-boot scenarios easy to support. Boot menu
ac3a84
-entries are defined via two simple formats that can be understood by different
ac3a84
-boot loader implementations, operating systems, and userspace programs. The
ac3a84
-same scheme can be used to prepare OS media for cases where the firmware
ac3a84
-includes a boot loader.
ac3a84
-
ac3a84
-## Target Audience
ac3a84
-
ac3a84
-The target audience for this specification is:
ac3a84
-
ac3a84
-* Boot loader developers, to write a boot loader that directly reads its
ac3a84
-  menu entries from these files
ac3a84
-* Firmware developers, to add generic boot loading support directly to the
ac3a84
-  firmware itself
ac3a84
-* OS installer developers, to create appropriate partitions and set up the
ac3a84
-  initial boot loader menu entries
ac3a84
-* Distribution developers, to create appropriate menu entry snippets when
ac3a84
-  installing or updating kernel packages
ac3a84
-* UI developers, to implement user interfaces that list and select among the
ac3a84
-  available boot options
ac3a84
-
ac3a84
-## The Partitions
ac3a84
-
ac3a84
-Everything described below is located on one or two partitions. The boot loader
ac3a84
-or user-space programs reading the boot loader menu entries should locate them
ac3a84
-in the following manner:
ac3a84
-
ac3a84
-* On disks with an MBR partition table:
ac3a84
-
ac3a84
-  * The boot partition — a partition with the type ID of `0xEA` — shall be used
ac3a84
-    as the single location for boot loader menu entries.
ac3a84
-
ac3a84
-* On disks with GPT (GUID Partition Table)
ac3a84
-
ac3a84
-  * The EFI System Partition (ESP for short) — a partition with a GPT type GUID
ac3a84
-    of `c12a7328-f81f-11d2-ba4b-00a0c93ec93b` — may be used as one of two locations for
ac3a84
-    boot loader menu entries.
ac3a84
-
ac3a84
-  * Optionally, an Extended Boot Loader Partition (XBOOTLDR partition for
ac3a84
-    short) — a partition with GPT type GUID of
ac3a84
-    `bc13c2ff-59e6-4262-a352-b275fd6f7172` — may be used as the second of two
ac3a84
-    locations for boot loader menu entries. This partition must be located on
ac3a84
-    the same disk as the ESP.
ac3a84
-
ac3a84
-There may be at most one partition of each of the types listed above on the
ac3a84
-same disk.
ac3a84
-
ac3a84
-**Note:** _These partitions are **shared** among all OS installations on the
ac3a84
-same disk. Instead of maintaining one boot partition per installed OS (as
ac3a84
-`/boot/` was traditionally handled), all installed OSes use the same place for
ac3a84
-boot loader menu entries._
ac3a84
-
ac3a84
-For systems where the firmware is able to read file systems directly, the ESP
ac3a84
-must — and the MBR boot and GPT XBOOTLDR partition should — be a file system
ac3a84
-readable by the firmware. For most systems this means VFAT (16 or 32
ac3a84
-bit). Applications accessing both partitions should hence not assume that
ac3a84
-fancier file system features such as symlinks, hardlinks, access control or
ac3a84
-case sensitivity are supported.
ac3a84
-
ac3a84
-### The `$BOOT` Partition Placeholder
ac3a84
-
ac3a84
-In the text below, the placeholder `$BOOT` will be used to refer to the
ac3a84
-partition determined as follows:
ac3a84
-
ac3a84
- 1. On disks with an MBR partition table: → the boot partition, as described above
ac3a84
-
ac3a84
- 2. On disks with a GPT partition table: → the XBOOTLDR partition if it exists
ac3a84
-
ac3a84
- 3. Otherwise, on disks with a GPT partition table: → the ESP
ac3a84
-
ac3a84
-`$BOOT` is the *primary* place to put boot menu entry resources into, but
ac3a84
-typically not the only one. Most importantly, boot loaders should also pick up
ac3a84
-menu entries from the ESP, even if XBOOTLDR exists (for details see below).
ac3a84
-
ac3a84
-### Creating These Partitions
ac3a84
-
ac3a84
-An installer for an operating system should use this logic when selecting or
ac3a84
-creating partitions:
ac3a84
-
ac3a84
-  * If a boot partition (in case of MBR) or an XBOOTLDR partition (in case of
ac3a84
-    GPT) already exists it should be used as `$BOOT` and used as primary
ac3a84
-    location to place boot loader menu resources in.
ac3a84
-
ac3a84
-  * Otherwise, if on GPT and an ESP is found and it is large enough (let's say
ac3a84
-    at least 1G) it should be used as `$BOOT` and used as primary location to
ac3a84
-    place boot loader menu resources in.
ac3a84
-
ac3a84
-  * Otherwise, if on GPT and neither XBOOTLDR nor ESP exist, an ESP should be
ac3a84
-    created of the appropriate size and be used as `$BOOT`, and used as primary
ac3a84
-    location to place boot loader menu resources in.
ac3a84
-
ac3a84
-  * Otherwise, a boot partition (in case of MBR) or XBOOTLDR partition (in case
ac3a84
-    of GPT) should be created of an appropriate size, and be used as `$BOOT`,
ac3a84
-    and used as primary location to place boot loader menu resources in.
ac3a84
-
ac3a84
-These partitions shall be determined during _installation time_, and
ac3a84
-`/etc/fstab` entries may be created.
ac3a84
-
ac3a84
-### Mount Points
ac3a84
-
ac3a84
-It is recommended to mount `$BOOT` to `/boot/`, and the ESP to `/efi/`. If
ac3a84
-`$BOOT` and the ESP are the same, then either a bind mount or a symlink should
ac3a84
-be established making the partition available under both paths.
ac3a84
-
ac3a84
-(Mounting the ESP to `/boot/efi/`, as was traditionally done, is not
ac3a84
-recommended. Such a nested setup complicates an implementation via direct
ac3a84
-`autofs` mounts — as implemented by `systemd` for example —, as establishing
ac3a84
-the inner `autofs` will trigger the outer one. Mounting the two partitions via
ac3a84
-`autofs` is recommended because the simple VFAT file system has weak data
ac3a84
-integrity properties and should remain unmounted whenever possible.)
ac3a84
-
ac3a84
-## Boot Loader Entries
ac3a84
-
ac3a84
-This specification defines two types of boot loader entries. The first type is
ac3a84
-text based, very simple, and suitable for a variety of firmware, architecture
ac3a84
-and image types ("Type #1"). The second type is specific to EFI, but allows
ac3a84
-single-file images that embed all metadata in the kernel binary itself, which
ac3a84
-is useful to cryptographically sign them as one file for the purpose of
ac3a84
-SecureBoot ("Type #2").
ac3a84
-
ac3a84
-Not all boot loader entries will apply to all systems. For example, Type #1
ac3a84
-entries that use the `efi` key and all Type #2 entries only apply to EFI
ac3a84
-systems. Entries using the `architecture` key might specify an architecture that
ac3a84
-doesn't match the local one. Boot loaders should ignore all entries that don't
ac3a84
-match the local platform and what the boot loader can support, and hide them
ac3a84
-from the user. Only entries matching the feature set of boot loader and system
ac3a84
-shall be considered and displayed. This allows image builders to put together
ac3a84
-images that transparently support multiple different architectures.
ac3a84
-
ac3a84
-Note that the three partitions described above are not supposed to be the
ac3a84
-exclusive territory of this specification. This specification only defines
ac3a84
-semantics of the `/loader/entries/` directory (along with the companion file
ac3a84
-`/loader/entries.srel`) and the `/EFI/Linux/` directory inside the file system,
ac3a84
-but it doesn't intend to define contents of the rest of the file system. Boot
ac3a84
-loaders, firmware, and other software implementing this specification may
ac3a84
-choose to place other files and directories in the same file system. For
ac3a84
-example, boot loaders that implement this specification might install their own
ac3a84
-boot code on the same partition; this is particularly common in the case of the
ac3a84
-ESP. Implementations of this specification must be able to operate correctly if
ac3a84
-files or directories other than `/loader/entries/` and `/EFI/Linux/` are found
ac3a84
-in the top level directory. Implementations that add their own files or
ac3a84
-directories to the file systems should use well-named directories, to make name
ac3a84
-collisions between multiple users of the file system unlikely.
ac3a84
-
ac3a84
-### Type #1 Boot Loader Specification Entries
ac3a84
-
ac3a84
-`/loader/entries/` in `$BOOT` is the primary directory containing Type #1
ac3a84
-drop-in snippets defining boot entries, one `.conf` file for each boot menu
ac3a84
-item. Each OS may provide one or more such entries.
ac3a84
-
ac3a84
-If the ESP is separate from `$BOOT` it may also contain a `/loader/entries/`
ac3a84
-directory, where the boot loader should look for boot entry snippets, as an
ac3a84
-additional source. The boot loader should enumerate both directories and
ac3a84
-present a merged list to the user. Note that this is done for compatibility
ac3a84
-only: while boot loaders should look in both places, OSes should only add their
ac3a84
-files to `$BOOT`.
ac3a84
-
ac3a84
-**Note:** _In all cases the `/loader/entries/` directory should be located
ac3a84
-directly in the root of the file system. Specifically, the `/loader/entries/`
ac3a84
-directory should **not** be located under the `/EFI/` subdirectory on the ESP._
ac3a84
-
ac3a84
-The file name of the boot entry snippets is used for identification of the boot
ac3a84
-item but shall never be presented to the user in the UI. The file name may be
ac3a84
-chosen freely but should be unique enough to avoid clashes between OS
ac3a84
-installations. More specifically, it is suggested to include the `entry-token`
ac3a84
-(see
ac3a84
-[kernel-install](https://www.freedesktop.org/software/systemd/man/kernel-install.html))
ac3a84
-or machine ID (see
ac3a84
-[/etc/machine-id](https://www.freedesktop.org/software/systemd/man/machine-id.html)),
ac3a84
-and the kernel version (as returned by `uname -r`, including the OS
ac3a84
-identifier), so that the whole filename is
ac3a84
-`$BOOT/loader/entries/<entry-token-or-machine-id>-<version>.conf`.
ac3a84
-
ac3a84
-Example: `$BOOT/loader/entries/6a9857a393724b7a981ebb5b8495b9ea-3.8.0-2.fc19.x86_64.conf`.
ac3a84
-
ac3a84
-In order to maximize compatibility with file system implementations and
ac3a84
-restricted boot loader environments, and to minimize conflicting character use
ac3a84
-with other programs, file names shall be chosen from a restricted character
ac3a84
-set: ASCII upper and lower case characters, digits, "+", "-", "_" and ".".
ac3a84
-Also, the file names should have a length of at least one and at most 255
ac3a84
-characters (including the file name suffix).
ac3a84
-
ac3a84
-These boot loader menu snippets shall be UNIX-style text files (i.e. lines
ac3a84
-separated by a single newline character), in the UTF-8 encoding. The
ac3a84
-boot loader menu snippets are loosely inspired by Grub1's configuration syntax.
ac3a84
-Lines beginning with "#" are used for comments and shall be ignored. The first
ac3a84
-word of a line is used as key and is separated by one or more spaces from the
ac3a84
-value.
ac3a84
-
ac3a84
-#### Type #1 Boot Loader Entry Keys
ac3a84
-
ac3a84
-The following keys are recognized:
ac3a84
-
ac3a84
-* `title` is a human-readable title for this menu item to be displayed in the
ac3a84
-  boot menu. It is a good idea to initialize this from the `PRETTY_NAME=` of
ac3a84
-  [os-release](https://www.freedesktop.org/software/systemd/man/os-release.html).
ac3a84
-  This name should be descriptive and does not have to be unique. If a boot
ac3a84
-  loader discovers two entries with the same title it should show more than
ac3a84
-  just the raw title in the UI, for example by appending the `version`
ac3a84
-  field. This field is optional.
ac3a84
-
ac3a84
-  Example: `title Fedora 18 (Spherical Cow)`
ac3a84
-
ac3a84
-* `version` is a human-readable version for this menu item. This is usually the
ac3a84
-  kernel version and is intended for use by OSes to install multiple kernel
ac3a84
-  versions with the same `title` field. This field is used for sorting entries,
ac3a84
-  so that the boot loader can order entries by age or select the newest one
ac3a84
-  automatically. This field is optional.
ac3a84
-
ac3a84
-  See [Sorting](#sorting) below.
ac3a84
-
ac3a84
-  Example: `version 3.7.2-201.fc18.x86_64`
ac3a84
-
ac3a84
-* `machine-id` is the machine ID of the OS. This can be used by boot loaders
ac3a84
-  and applications to filter out boot entries, for example to show only a
ac3a84
-  single newest kernel per OS, to group items by OS, or to filter out the
ac3a84
-  currently booted OS when showing only other installed operating systems.
ac3a84
-  This ID shall be formatted as 32 lower case hexadecimal characters
ac3a84
-  (i.e. without any UUID formatting). This key is optional.
ac3a84
-
ac3a84
-  Example: `machine-id 4098b3f648d74c13b1f04ccfba7798e8`
ac3a84
-
ac3a84
-* `sort-key` is a short string used for sorting entries on display. This should
ac3a84
-  typically be initialized from the `IMAGE_ID=` or `ID=` fields of
ac3a84
-  [os-release](https://www.freedesktop.org/software/systemd/man/os-release.html),
ac3a84
-  possibly with an additional suffix. This field is optional.
ac3a84
-
ac3a84
-  Example: `sort-key fedora`
ac3a84
-
ac3a84
-* `linux` is the Linux kernel image to execute and takes a path relative to the
ac3a84
-  root of the file system containing the boot entry snippet itself. It is
ac3a84
-  recommended that every distribution creates an entry-token/machine-id and
ac3a84
-  version specific subdirectory and places its kernels and initrd images there
ac3a84
-  (see below).
ac3a84
-
ac3a84
-  Example: `linux /6a9857a393724b7a981ebb5b8495b9ea/3.8.0-2.fc19.x86_64/linux`
ac3a84
-
ac3a84
-* `initrd` is the initrd `cpio` image to use when executing the kernel. This key
ac3a84
-  may appear more than once in which case all specified images are used, in the
ac3a84
-  order they are listed.
ac3a84
-
ac3a84
-  Example: `initrd 6a9857a393724b7a981ebb5b8495b9ea/3.8.0-2.fc19.x86_64/initrd`
ac3a84
-
ac3a84
-* `efi` refers to an arbitrary EFI program. If this key is set, and the system
ac3a84
-  is not an EFI system, this entry should be hidden.
ac3a84
-
ac3a84
-* `options` shall contain kernel parameters to pass to the Linux kernel to
ac3a84
-  spawn. This key is optional and may appear more than once in which case all
ac3a84
-  specified parameters are combined in the order they are listed.
ac3a84
-
ac3a84
-  Example: `options root=UUID=6d3376e4-fc93-4509-95ec-a21d68011da2 quiet`
ac3a84
-
ac3a84
-* `devicetree` refers to the binary device tree to use when executing the
ac3a84
-  kernel. This key is optional.
ac3a84
-
ac3a84
-  Example: `devicetree 6a9857a393724b7a981ebb5b8495b9ea/3.8.0-2.fc19.armv7hl/tegra20-paz00.dtb`
ac3a84
-
ac3a84
-* `devicetree-overlay` refers to a list of device tree overlays that should be
ac3a84
-  applied by the boot loader. Multiple overlays are separated by spaces and
ac3a84
-  applied in the same order as they are listed. This key is optional but
ac3a84
-  depends on the `devicetree` key.
ac3a84
-
ac3a84
-  Example: `devicetree-overlay /6a9857a393724b7a981ebb5b8495b9ea/overlays/overlay_A.dtbo /6a9857a393724b7a981ebb5b8495b9ea/overlays/overlay_B.dtbo`
ac3a84
-
ac3a84
-* `architecture` refers to the architecture this entry is for. The argument
ac3a84
-  should be an architecture identifier, using the architecture vocabulary
ac3a84
-  defined by the EFI specification (i.e. `IA32`, `x64`, `IA64`, `ARM`, `AA64`,
ac3a84
-  …). If specified and it does not match the local system architecture this
ac3a84
-  entry should be hidden. The comparison should be done case-insensitively.
ac3a84
-
ac3a84
-  Example: `architecture aa64`
ac3a84
-
ac3a84
-Each boot loader menu entry drop-in snippet must include at least a `linux` or an `efi`
ac3a84
-key. Here is an example for a complete drop-in file:
ac3a84
-
ac3a84
-    # /boot/loader/entries/6a9857a393724b7a981ebb5b8495b9ea-3.8.0-2.fc19.x86_64.conf
ac3a84
-    title        Fedora 19 (Rawhide)
ac3a84
-    sort-key     fedora
ac3a84
-    machine-id   6a9857a393724b7a981ebb5b8495b9ea
ac3a84
-    version      3.8.0-2.fc19.x86_64
ac3a84
-    options      root=UUID=6d3376e4-fc93-4509-95ec-a21d68011da2 quiet
ac3a84
-    architecture x64
ac3a84
-    linux        /6a9857a393724b7a981ebb5b8495b9ea/3.8.0-2.fc19.x86_64/linux
ac3a84
-    initrd       /6a9857a393724b7a981ebb5b8495b9ea/3.8.0-2.fc19.x86_64/initrd
ac3a84
-
ac3a84
-On EFI systems all Linux kernel images should be EFI images. In order to
ac3a84
-increase compatibility with EFI systems it is highly recommended only to
ac3a84
-install EFI kernel images, even on non-EFI systems, if that's applicable and
ac3a84
-supported on the specific architecture.
ac3a84
-
ac3a84
-Conversely, in order to increase compatibility it is recommended to install
ac3a84
-generic kernel images that make few assumptions about the firmware they run on,
ac3a84
-i.e. it is a good idea that both images shipped as UEFI PE images and those
ac3a84
-which are not don't make unnecessary assumption on the underlying firmware,
ac3a84
-i.e. don't hard depend on legacy BIOS calls or UEFI boot services.
ac3a84
-
ac3a84
-When Type #1 boot loader menu entry snippets refer to other files (for `linux`,
ac3a84
-`initrd`, `efi`, `devicetree`, and `devicetree-overlay`), those files must be
ac3a84
-located on the same partition, and the paths must be absolute paths relative to
ac3a84
-the root of that file system. The naming of those files can be chosen by the
ac3a84
-installer. A recommended scheme is described in the next section. Paths should
ac3a84
-be normalized, i.e. not include `..`, `.` or a sequence of more than one
ac3a84
-`/`. Paths may be prefixed with a `/`, but this is optional and has the same
ac3a84
-effect as paths without it: all paths are always relative to the root directory
ac3a84
-of the partition they are referenced from.
ac3a84
-
ac3a84
-Even though the backing file system is typically case-insensitive (i.e. VFAT)
ac3a84
-it is strongly recommended to reference files in the casing actually used for
ac3a84
-the directories/files, so that placing these files on other file systems is
ac3a84
-still safe and robust.
ac3a84
-
ac3a84
-### Recommended Directory Layout for Additional Files
ac3a84
-
ac3a84
-It is recommended to place the kernel and other other files comprising a single
ac3a84
-boot loader entry in a separate directory:
ac3a84
-`/<entry-token-or-machine-id>/<version>/`. This naming scheme uses the same
ac3a84
-elements as the boot loader menu entry snippet, providing the same level of
ac3a84
-uniqueness.
ac3a84
-
ac3a84
-Example: `$BOOT/6a9857a393724b7a981ebb5b8495b9ea/3.8.0-2.fc19.x86_64/linux`
ac3a84
-         `$BOOT/6a9857a393724b7a981ebb5b8495b9ea/3.8.0-2.fc19.x86_64/initrd`
ac3a84
-
ac3a84
-Other naming schemes are possible. In particular, traditionally a flat naming
ac3a84
-scheme with files in the root directory was used. This is not recommended
ac3a84
-because it is hard to avoid conflicts in a multi-boot installation.
ac3a84
-
ac3a84
-### Standard-conformance Marker File
ac3a84
-
ac3a84
-Unfortunately, there are implementations of boot loading infrastructure that
ac3a84
-are also using the `/loader/entries/` directory, but install files that do not
ac3a84
-follow this specification. In order to minimize confusion, a boot loader
ac3a84
-implementation may place the file `/loader/entries.srel` next to the
ac3a84
-`/loader/entries/` directory containing the ASCII string `type1` (followed by a
ac3a84
-UNIX newline). Tools that need to determine whether an existing directory
ac3a84
-implements the semantics described here may check for this file and contents:
ac3a84
-if it exists and contains the mentioned string, it shall assume a
ac3a84
-standards-compliant implementation is in place. If it exists but contains a
ac3a84
-different string it shall assume other semantics are implemented. If the file
ac3a84
-does not exist, no assumptions should be made.
ac3a84
-
ac3a84
-### Type #2 EFI Unified Kernel Images
ac3a84
-
ac3a84
-A unified kernel image is a single EFI PE executable combining an EFI stub
ac3a84
-loader, a kernel image, an initrd image, and the kernel command line. See
ac3a84
-[systemd-stub(7)](https://www.freedesktop.org/software/systemd/man/systemd-stub.html)
ac3a84
-for details. The primary place for such unified images is the `/EFI/Linux/`
ac3a84
-directory in `$BOOT`. Operating systems should place unified EFI kernels only
ac3a84
-in the `$BOOT` partition. Boot loaders should also look in the `/EFI/Linux/` of
ac3a84
-the ESP — if it is different from `$BOOT` — and present a merged list of menu
ac3a84
-entries from both partitions. Regardless if placed in the primary or secondary
ac3a84
-location: the files must have the extension `.efi`.  Support for images of this
ac3a84
-type is of course specific to systems with EFI firmware. Ignore this section if
ac3a84
-you work on systems not supporting EFI.
ac3a84
-
ac3a84
-Type #2 file names should be chosen from the same restricted character set as
ac3a84
-Type #1 described above (but with the file name suffix of `.efi` instead of
ac3a84
-`.conf`).
ac3a84
-
ac3a84
-Images of this type have the advantage that all metadata and payload that makes
ac3a84
-up the boot entry is contained in a single PE file that can be signed
ac3a84
-cryptographically as one for the purpose of EFI SecureBoot.
ac3a84
-
ac3a84
-A valid unified kernel image in the `/EFI/Linux/` directory must contain two PE sections:
ac3a84
-
ac3a84
-* `.cmdline` section with the kernel command line,
ac3a84
-* `.osrel` section with an embedded copy of the
ac3a84
-  [os-release](https://www.freedesktop.org/software/systemd/man/os-release.html)
ac3a84
-  file describing the image.
ac3a84
-
ac3a84
-The `PRETTY_NAME=` and `VERSION_ID=` fields in the embedded `os-release` file
ac3a84
-are used the same as `title` and `version` in the Type #1 entries. The
ac3a84
-`.cmdline` section is used instead of the `options` field. `linux` and `initrd`
ac3a84
-fields are not necessary, and there is no counterpart for the `machine-id`
ac3a84
-field.
ac3a84
-
ac3a84
-On EFI, any such images shall be added to the list of valid boot entries.
ac3a84
-
ac3a84
-### Additional Notes
ac3a84
-
ac3a84
-Note that these boot entry snippets and unified kernels do not need to be the
ac3a84
-only menu entry sources for a boot loader. It may extend this list of
ac3a84
-entries with additional items from other configuration files (for example its
ac3a84
-own native configuration files) or automatically detected other entries without
ac3a84
-explicit configuration.
ac3a84
-
ac3a84
-To make this explicitly clear: this specification is designed with "free"
ac3a84
-operating systems in mind, starting Windows or MacOS is out of focus with these
ac3a84
-boot loader menu entry snippets, use boot-loader specific solutions for
ac3a84
-that. In the text above, if we say "OS" we hence imply "free", i.e. primarily
ac3a84
-Linux (though this could be easily be extended to the BSDs and whatnot).
ac3a84
-
ac3a84
-Note that all paths used in the boot loader menu entry snippets use a
ac3a84
-Unix-style "/" as path separator. This needs to be converted to an EFI-style
ac3a84
-"\\" separator in EFI boot loaders.
ac3a84
-
ac3a84
-
ac3a84
-## Locating Boot Entries
ac3a84
-
ac3a84
-A _boot loader_ locates the XBOOTLDR partition and the ESP, then simply reads
ac3a84
-all the files `/loader/entries/*.conf` in them, and populates its boot menu
ac3a84
-(and handle gracefully if one of the two partitions is missing). On EFI, it
ac3a84
-then extends this with any unified kernel images found in `/EFI/Linux/*.efi` in
ac3a84
-the two partitions. It may also add additional entries, for example a "Reboot
ac3a84
-into firmware" option.  Optionally it may sort the menu based on the
ac3a84
-`sort-key`, `machine-id` and `version` fields, and possibly others. It uses the
ac3a84
-file name to identify specific items, for example in case it supports storing
ac3a84
-away default entry information somewhere. A boot loader should generally not
ac3a84
-modify these files.
ac3a84
-
ac3a84
-For "Boot Loader Specification Entries" (Type #1), the _kernel package
ac3a84
-installer_ installs the kernel and initrd images to `$BOOT`. It is recommended
ac3a84
-to place these files in a vendor and OS and installation specific directory. It
ac3a84
-then generates a boot loader menu entry snippet, placing it in
ac3a84
-`$BOOT/loader/entries/xyz.conf`, with "xyz" as concatenation of
ac3a84
-entry-token/machine-id and version information (see above). The files created
ac3a84
-by a kernel package are tied to the kernel package and should be removed along
ac3a84
-with it.
ac3a84
-
ac3a84
-For "EFI Unified Kernel Images" (Type #2), the vendor or kernel package
ac3a84
-installer should create the combined image and drop it into
ac3a84
-`$BOOT/EFI/Linux/`. This file is also tied to the kernel package and should be
ac3a84
-removed along with it.
ac3a84
-
ac3a84
-A _UI application_ intended to show available boot options shall operate
ac3a84
-similarly to a boot loader (and thus search both `$BOOT` and the ESP if
ac3a84
-distinct), but might apply additional filters, for example by filtering the
ac3a84
-booted OS via the machine ID, or by suppressing all but the newest kernel
ac3a84
-versions.
ac3a84
-
ac3a84
-An _OS installer_ picks the right place for `$BOOT` as defined above (possibly
ac3a84
-creating a partition and file system for it) and creates the `/loader/entries/`
ac3a84
-directory and the `/loader/entries.srel` file in it (the latter only if the
ac3a84
-directory didn't exist yet). It then installs an appropriate boot loader that
ac3a84
-can read these snippets. Finally, it installs one or more kernel packages.
ac3a84
-
ac3a84
-## Boot counting
ac3a84
-
ac3a84
-The main idea is that when boot entries are initially installed, they are
ac3a84
-marked as "indeterminate" and assigned a number of boot attempts. Each time the
ac3a84
-boot loader tries to boot an entry, it decreases this count by one. If the
ac3a84
-operating system considers the boot as successful, it removes the counter
ac3a84
-altogether and the entry becomes "good". Otherwise, once the assigned number of
ac3a84
-boots is exhausted, the entry is marked as "bad".
ac3a84
-
ac3a84
-Which boots are "successful" is determined by the operating system. systemd
ac3a84
-provides a generic mechanism that can be extended with arbitrary checks and
ac3a84
-actions, see [Automatic Boot Assessment](AUTOMATIC_BOOT_ASSESSMENT.md), but the
ac3a84
-boot counting mechanism described in this specification can also be used with
ac3a84
-other implementations.
ac3a84
-
ac3a84
-The boot counting data is stored in the name of the boot loader entry. A boot
ac3a84
-loader entry file name may contain a plus (`+`) followed by a number. This may
ac3a84
-optionally be followed by a minus (`-`) followed by a second number. The dot
ac3a84
-(`.`) and file name suffix (`conf` of `efi`) must immediately follow. Boot
ac3a84
-counting is enabled for entries which match this pattern.
ac3a84
-
ac3a84
-The first number is the "tries left" counter signifying how many attempts to boot
ac3a84
-this entry shall still be made. The second number is the "tries done" counter,
ac3a84
-showing how many failed attempts to boot it have already been made. Each time
ac3a84
-a boot loader entry marked this way is booted, the first counter is decremented,
ac3a84
-and the second one incremented. (If the second counter is missing,
ac3a84
-then it is assumed to be equivalent to zero.) If the "tries left" counter is
ac3a84
-above zero the entry is still considered "indeterminate". A boot entry with the
ac3a84
-"tries left" counter at zero is considered "bad".
ac3a84
-
ac3a84
-If the boot attempt completed successfully the entry's counters are removed
ac3a84
-from the name (entry state becomes "good"), thus turning off boot counting for
ac3a84
-this entry.
ac3a84
-
ac3a84
-## Sorting
ac3a84
-
ac3a84
-The boot loader menu should generally show entries in some order meaningful to
ac3a84
-the user. The `title` key is free-form and not suitable to be used as the
ac3a84
-primary sorting key. Instead, the boot loader should use the following rules:
ac3a84
-
ac3a84
-1. Entries which are subject to boot counting and are marked as "bad", should
ac3a84
-   be sorted later than all other entries. Entries which are marked as
ac3a84
-   "indeterminate" or "good" (or were not subject to boot counting at all),
ac3a84
-   are thus sorted earlier.
ac3a84
-
ac3a84
-2. If `sort-key` is set on both entries, use in order of priority,
ac3a84
-   the `sort-key` (A-Z, increasing [alphanumerical order](#alphanumerical-order)),
ac3a84
-   `machine-id` (A-Z, increasing alphanumerical order),
ac3a84
-   and `version` keys (decreasing [version order](#version-order)).
ac3a84
-
ac3a84
-3. If `sort-key` is set on one entry, it sorts earlier.
ac3a84
-
ac3a84
-4. At the end, if necessary, when `sort-key` is not set or those fields are not
ac3a84
-   set or are all equal, the boot loader should sort using the file name of the
ac3a84
-   entry (decreasing version sort), with the suffix removed.
ac3a84
-
ac3a84
-**Note:** _This description assumes that the boot loader shows entries in a
ac3a84
-traditional menu, with newest and "best" entries at the top, thus entries with
ac3a84
-a higher version number are sorter *earlier*. The boot loader is free to
ac3a84
-use a different direction (or none at all) during display._
ac3a84
-
ac3a84
-**Note:** _The boot loader should allow booting "bad" entries, e.g. in case no
ac3a84
-other entries are left or they are unusable for other reasons. It may
ac3a84
-deemphasize or hide such entries by default._
ac3a84
-
ac3a84
-**Note:** _"Bad" boot entries have a suffix of "+0-`n`", where `n` is the
ac3a84
-number of failed boot attempts. Removal of the suffix is not necessary for
ac3a84
-comparisons described by the last point above. In the unlikely scenario that we
ac3a84
-have multiple such boot entries that differ only by the boot counting data, we
ac3a84
-would sort them by `n`._
ac3a84
-
ac3a84
-### Alphanumerical Order
ac3a84
-
ac3a84
-Free-form strings and machine IDs should be compared using a method equivalent
ac3a84
-to [strcmp(3)](https://man7.org/linux/man-pages/man3/strcmp.3.html) on their
ac3a84
-UTF-8 representations. If just one of the strings is unspecified or empty, it
ac3a84
-compares lower. If both strings are unspecified or empty, they compare equal.
ac3a84
-
ac3a84
-### Version Order
ac3a84
-
ac3a84
-The following method should be used to compare version strings. The algorithm
ac3a84
-is based on rpm's `rpmvercmp()`, but not identical.
ac3a84
-
ac3a84
-ASCII letters (`a-z`, `A-Z`) and digits (`0-9`) form alphanumerical components of the version.
ac3a84
-Minus (`-`) separates the version and release parts.
ac3a84
-Dot (`.`) separates parts of version or release.
ac3a84
-Tilde (`~`) is a prefix that always compares lower.
ac3a84
-Caret (`^`) is a prefix that always compares higher.
ac3a84
-
ac3a84
-Both strings are compared from the beginning until the end, or until the
ac3a84
-strings are found to compare as different. In a loop:
ac3a84
-1. Any characters which are outside of the set of listed above (`a-z`, `A-Z`, `0-9`, `-`, `.`, `~`, `^`)
ac3a84
-   are skipped in both strings. In particular, this means that non-ASCII characters
ac3a84
-   that are Unicode digits or letters are skipped too.
ac3a84
-2. If one of the strings has ended: if the other string hasn't, the string that
ac3a84
-   has remaining characters compares higher. Otherwise, the strings compare
ac3a84
-   equal.
ac3a84
-3. If the remaining part of one of strings starts with `~`:
ac3a84
-   if other remaining part does not start with `~`,
ac3a84
-   the string with `~` compares lower. Otherwise, both tilde characters are skipped.
ac3a84
-4. The check from point 2. is repeated here.
ac3a84
-5. If the remaining part of one of strings starts with `-`:
ac3a84
-   if the other remaining part does not start with `-`,
ac3a84
-   the string with `-` compares lower. Otherwise, both minus characters are skipped.
ac3a84
-6. If the remaining part of one of strings starts with `^`:
ac3a84
-   if the other remaining part does not start with `^`,
ac3a84
-   the string with `^` compares higher. Otherwise, both caret characters are skipped.
ac3a84
-6. If the remaining part of one of strings starts with `.`:
ac3a84
-   if the other remaining part does not start with `.`,
ac3a84
-   the string with `.` compares lower. Otherwise, both dot characters are skipped.
ac3a84
-7. If either of the remaining parts starts with a digit, numerical prefixes are
ac3a84
-   compared numerically. Any leading zeroes are skipped.
ac3a84
-   The numerical prefixes (until the first non-digit character) are evaluated as numbers.
ac3a84
-   If one of the prefixes is empty, it evaluates as 0.
ac3a84
-   If the numbers are different, the string with the bigger number compares higher.
ac3a84
-   Otherwise, the comparison continues at the following characters at point 1.
ac3a84
-8. Leading alphabetical prefixes are compared alphabetically.
ac3a84
-   The substrings are compared letter-by-letter.
ac3a84
-   If both letters are the same, the comparison continues with the next letter.
ac3a84
-   Capital letters compare lower than lower-case letters (`A < a`).
ac3a84
-   When the end of one substring has been reached (a non-letter character or the end
ac3a84
-   of the whole string), if the other substring has remaining letters, it compares higher.
ac3a84
-   Otherwise, the comparison continues at the following characters at point 1.
ac3a84
-
ac3a84
-Examples (with '' meaning the empty string):
ac3a84
-
ac3a84
-* `11 == 11`
ac3a84
-* `systemd-123 == systemd-123`
ac3a84
-* `bar-123 < foo-123`
ac3a84
-* `123a > 123`
ac3a84
-* `123.a > 123`
ac3a84
-* `123.a < 123.b`
ac3a84
-* `123a > 123.a`
ac3a84
-* `11α == 11β`
ac3a84
-* `A < a`
ac3a84
-* '' < `0`
ac3a84
-* `0.` > `0`
ac3a84
-* `0.0` > `0`
ac3a84
-* `0` < `~`
ac3a84
-* '' < `~`
ac3a84
-
ac3a84
-Note: [systemd-analyze](https://www.freedesktop.org/software/systemd/man/systemd-analyze.html)
ac3a84
-implements this version comparison algorithm as
ac3a84
-```
ac3a84
-systemd-analyze compare-versions <version-a> <version-b>
ac3a84
-```
ac3a84
-
ac3a84
-## Additional discussion
ac3a84
-
ac3a84
-### Why is there a need for this specification?
ac3a84
-
ac3a84
-This specification brings the following advantages:
ac3a84
-
ac3a84
-* Installation of new boot entries is more robust, as no explicit rewriting of
ac3a84
-  configuration files is required.
ac3a84
-
ac3a84
-* It allows an out-of-the-box boot experience on any platform without the need
ac3a84
-  of traditional firmware mechanisms (e.g. BIOS calls, UEFI Boot Services).
ac3a84
-
ac3a84
-* It improves dual-boot scenarios. Without cooperation, multiple Linux
ac3a84
-  installations tend to fight over which boot loader becomes the primary one in
ac3a84
-  possession of the MBR or the boot partition, and only that one installation
ac3a84
-  can then update the boot loader configuration. Other Linux installs have to
ac3a84
-  be manually configured to never touch the MBR and instead install a
ac3a84
-  chain-loaded boot loader in their own partition headers. In this new scheme
ac3a84
-  all installations share a loader directory and no manual configuration has to
ac3a84
-  take place. All participants implicitly cooperate due to removal of name
ac3a84
-  collisions and can install/remove their own boot menu entries without
ac3a84
-  interfering with the entries of other installed operating systems.
ac3a84
-
ac3a84
-* Drop-in directories are now pretty ubiquitous on Linux as an easy way to
ac3a84
-  extend boot loader menus without having to edit, regenerate or manipulate
ac3a84
-  configuration files. For the sake of uniformity, we should do the same for
ac3a84
-  the boot menu.
ac3a84
-
ac3a84
-* Userspace code can sanely parse boot loader menu entries which is essential
ac3a84
-  with modern firmware which does not necessarily initialize USB keyboards
ac3a84
-  during boot, which makes boot menus hard to reach for the user. If userspace
ac3a84
-  code can parse the boot loader menu entries too, UI can be written that
ac3a84
-  select a boot menu item to boot into before rebooting the machine, thus not
ac3a84
-  requiring interactivity during early boot.
ac3a84
-
ac3a84
-* To unify and thus simplify menu entries of the various boot loaders, which
ac3a84
-  makes configuration of the boot loading process easier for users,
ac3a84
-  administrators, and developers alike.
ac3a84
-
ac3a84
-* For boot loaders with configuration _scripts_ such as grub2, adopting this
ac3a84
-  spec allows for mostly static scripts that are generated only once at first
ac3a84
-  installation, but then do not need to be updated anymore as that is done via
ac3a84
-  drop-in files exclusively.
ac3a84
-
ac3a84
-### Why not simply rely on the EFI boot menu logic?
ac3a84
-
ac3a84
-EFI is not ubiquitous, especially not in embedded systems. But even on systems
ac3a84
-with EFI, which provides a boot options logic that can offer similar
ac3a84
-functionality, this specification is still needed for the following reasons:
ac3a84
-
ac3a84
-* The various EFI implementations implement the boot order/boot item logic to
ac3a84
-  different levels. Some firmware implementations do not offer a boot menu at
ac3a84
-  all and instead unconditionally follow the EFI boot order, booting the first
ac3a84
-  item that is working.
ac3a84
-
ac3a84
-* If the firmware setup is used to reset data, usually all EFI boot entries
ac3a84
-  are lost, making the system entirely unbootable, as the firmware setups
ac3a84
-  generally do not offer a UI to define additional boot items. By placing the
ac3a84
-  menu item information on disk, it is always available, even if the firmware
ac3a84
-  configuration is lost.
ac3a84
-
ac3a84
-* Harddisk images should be movable between machines and be bootable without
ac3a84
-  requiring firmware configuration. This also requires that the list
ac3a84
-  of boot options is defined on disk, and not in EFI variables alone.
ac3a84
-
ac3a84
-* EFI is not universal yet (especially on non-x86 platforms), this
ac3a84
-  specification is useful both for EFI and non-EFI boot loaders.
ac3a84
-
ac3a84
-* Many EFI systems disable USB support during early boot to optimize boot
ac3a84
-  times, thus making keyboard input unavailable in the EFI menu. It is thus
ac3a84
-  useful if the OS UI has a standardized way to discover available boot options
ac3a84
-  which can be booted to.
ac3a84
-
ac3a84
-### Why is the version comparison logic so complicated?
ac3a84
-
ac3a84
-The `sort-key` allows us to group entries by "operating system", e.g. all
ac3a84
-versions of Fedora together, no matter if they identify themselves as "Fedora
ac3a84
-Workstation" or "Fedora Rawhide (prerelease)". The `sort-key` was introduced
ac3a84
-only recently, so we need to provide a meaningful order for entries both with
ac3a84
-and without it. Since it is a new concept, it is assumed that entries with
ac3a84
-`sort-key` are newer.
ac3a84
-
ac3a84
-In a traditional menu with entries displayed vertically, we want names to be
ac3a84
-sorter alpabetically (CentOS, Debian, Fedora, OpenSUSE, …), it would be strange
ac3a84
-to have them in reverse order. But when multiple kernels are available for the
ac3a84
-same installation, we want to display the latest kernel with highest priority,
ac3a84
-i.e. earlier in the list.
ac3a84
-
ac3a84
-### Why do you use file renames to store the counter? Why not a regular file?
ac3a84
-
ac3a84
-Mainly two reasons: it's relatively likely that renames can be implemented
ac3a84
-atomically even in simpler file systems, as renaming generally avoids
ac3a84
-allocating or releasing data blocks. Writing to file contents has a much bigger
ac3a84
-chance to be result in incomplete or corrupt data. Moreover renaming has the
ac3a84
-benefit that the boot count metadata is directly attached to the boot loader
ac3a84
-entry file, and thus the lifecycle of the metadata and the entry itself are
ac3a84
-bound together. This means no additional clean-up needs to take place to drop
ac3a84
-the boot loader counting information for an entry when it is removed.
ac3a84
-
ac3a84
-### Why not use EFI variables for storing the boot counter?
ac3a84
-
ac3a84
-The memory chips used to back the persistent EFI variables are generally not of
ac3a84
-the highest quality, hence shouldn't be written to more than necessary. This
ac3a84
-means we can't really use it for changes made regularly during boot, but should
ac3a84
-use it only for seldom-made configuration changes.
ac3a84
-
ac3a84
-### Out of Focus
ac3a84
-
ac3a84
-There are a couple of items that are out of focus for this specification:
ac3a84
-
ac3a84
-* If userspace can figure out the available boot options, then this is only
ac3a84
-  useful so much: we'd still need to come up with a way how userspace could
ac3a84
-  communicate to the boot loader the default boot loader entry temporarily or
ac3a84
-  persistently. Defining a common scheme for this is certainly a good idea, but
ac3a84
-  out of focus for this specification.
ac3a84
-
ac3a84
-* This specification is just about "Free" Operating systems. Hooking in other
ac3a84
-  operating systems (like Windows and macOS) into the boot menu is a different
ac3a84
-  story and should probably happen outside of this specification. For example,
ac3a84
-  boot loaders might choose to detect other available OSes dynamically at
ac3a84
-  runtime without explicit configuration (like `systemd-boot` does it), or via
ac3a84
-  native configuration (for example via explicit Grub2 configuration generated
ac3a84
-  once at installation).
ac3a84
-
ac3a84
-* This specification leaves undefined what to do about systems which are
ac3a84
-  upgraded from an OS that does not implement this specification. As the
ac3a84
-  previous boot loader logic was largely handled by in distribution-specific
ac3a84
-  ways we probably should leave the upgrade path (and whether there actually is
ac3a84
-  one) to the distributions. The simplest solution might be to simply continue
ac3a84
-  with the old scheme for old installations and use this new scheme only for
ac3a84
-  new installations.
ac3a84
-
ac3a84
-* Referencing kernels or initrds on other partitions other than the partition
ac3a84
-  containing the Type #1 boot loader entry. This is by design, as specifying
ac3a84
-  other partitions or devices would require a non-trivial language for denoting
ac3a84
-  device paths. In particular this means that on non-EFI systems boot loader
ac3a84
-  menu entry snippets following this specification cannot be used to spawn
ac3a84
-  other operating systems (such as Windows).
ac3a84
-
ac3a84
-
ac3a84
-## Links
ac3a84
-
ac3a84
-[GUID Partition Table](https://en.wikipedia.org/wiki/GUID_Partition_Table)
ac3a84
-[Boot Loader Interface](BOOT_LOADER_INTERFACE.md)
ac3a84
-[Discoverable Partitions Specification](DISCOVERABLE_PARTITIONS.md)
ac3a84
-[`systemd-boot(7)`](https://www.freedesktop.org/software/systemd/man/systemd-boot.html)
ac3a84
-[`bootctl(1)`](https://www.freedesktop.org/software/systemd/man/bootctl.html)
ac3a84
-[`systemd-gpt-auto-generator(8)`](https://www.freedesktop.org/software/systemd/man/systemd-gpt-auto-generator.html)
ac3a84
+[This content has moved to the UAPI group website](https://uapi-group.org/specifications/specs/boot_loader_specification/)
ac3a84
diff --git a/docs/DISCOVERABLE_PARTITIONS.md b/docs/DISCOVERABLE_PARTITIONS.md
ac3a84
index efd20533a5..bc05b6cc5a 100644
ac3a84
--- a/docs/DISCOVERABLE_PARTITIONS.md
ac3a84
+++ b/docs/DISCOVERABLE_PARTITIONS.md
ac3a84
@@ -1,423 +1 @@
ac3a84
----
ac3a84
-title: Discoverable Partitions Specification
ac3a84
-category: Concepts
ac3a84
-layout: default
ac3a84
-SPDX-License-Identifier: LGPL-2.1-or-later
ac3a84
----
ac3a84
-# The Discoverable Partitions Specification (DPS)
ac3a84
-
ac3a84
-_TL;DR: Let's automatically discover, mount and enable the root partition,
ac3a84
-`/home/`, `/srv/`, `/var/` and `/var/tmp/` and the swap partitions based on
ac3a84
-GUID Partition Tables (GPT)!_
ac3a84
-
ac3a84
-This specification describes the use of GUID Partition Table (GPT) UUIDs to
ac3a84
-enable automatic discovery of partitions and their intended mountpoints.
ac3a84
-Traditionally Linux has made little use of partition types, mostly just
ac3a84
-defining one UUID for file system/data partitions and another one for swap
ac3a84
-partitions. With this specification, we introduce additional partition types
ac3a84
-for specific uses. This has many benefits:
ac3a84
-
ac3a84
-* OS installers can automatically discover and make sense of partitions of
ac3a84
-  existing Linux installations.
ac3a84
-* The OS can discover and mount the necessary file systems with a non-existent
ac3a84
-  or incomplete `/etc/fstab` file and without the `root=` kernel command line
ac3a84
-  option.
ac3a84
-* Container managers (such as nspawn and libvirt-lxc) can introspect and set up
ac3a84
-  file systems contained in GPT disk images automatically and mount them to the
ac3a84
-  right places, thus allowing booting the same, identical images on bare metal
ac3a84
-  and in Linux containers. This enables true, natural portability of disk
ac3a84
-  images between physical machines and Linux containers.
ac3a84
-* As a help to administrators and users partition manager tools can show more
ac3a84
-  descriptive information about partitions tables.
ac3a84
-
ac3a84
-Note that the OS side of this specification is currently implemented in
ac3a84
-[systemd](https://systemd.io/) 211 and newer in the
ac3a84
-[systemd-gpt-auto-generator(8)](https://www.freedesktop.org/software/systemd/man/systemd-gpt-auto-generator.html)
ac3a84
-generator tool. Note that automatic discovery of the root only works if the
ac3a84
-boot loader communicates this information to the OS, by implementing the
ac3a84
-[Boot Loader Interface](BOOT_LOADER_INTERFACE.md).
ac3a84
-
ac3a84
-## Defined Partition Type UUIDs
ac3a84
-
ac3a84
-| Name | Partition Type UUID | Allowed File Systems | Explanation |
ac3a84
-|------|---------------------|----------------------|-------------|
ac3a84
-| _Root Partition (Alpha)_ | `6523f8ae-3eb1-4e2a-a05a-18b695ae656f` `SD_GPT_ROOT_ALPHA` | Any native, optionally in LUKS | On systems with matching architecture, the first partition with this type UUID on the disk containing the active EFI ESP is automatically mounted to the root directory `/`. If the partition is encrypted with LUKS or has dm-verity integrity data (see below), the device mapper file will be named `/dev/mapper/root`. |
ac3a84
-| _Root Partition (ARC)_ | `d27f46ed-2919-4cb8-bd25-9531f3c16534` `SD_GPT_ROOT_ARC` | ditto | ditto |
ac3a84
-| _Root Partition (32-bit ARM)_ | `69dad710-2ce4-4e3c-b16c-21a1d49abed3` `SD_GPT_ROOT_ARM` | ditto | ditto |
ac3a84
-| _Root Partition (64-bit ARM/AArch64)_ | `b921b045-1df0-41c3-af44-4c6f280d3fae` `SD_GPT_ROOT_ARM64` | ditto | ditto |
ac3a84
-| _Root Partition (Itanium/IA-64)_ | `993d8d3d-f80e-4225-855a-9daf8ed7ea97` `SD_GPT_ROOT_IA64` | ditto | ditto |
ac3a84
-| _Root Partition (LoongArch 64-bit)_ | `77055800-792c-4f94-b39a-98c91b762bb6` `SD_GPT_ROOT_LOONGARCH64` | ditto | ditto |
ac3a84
-| _Root Partition (32-bit MIPS LittleEndian (mipsel))_ | `37c58c8a-d913-4156-a25f-48b1b64e07f0` `SD_GPT_ROOT_MIPS_LE` | ditto | ditto |
ac3a84
-| _Root Partition (64-bit MIPS LittleEndian (mips64el))_ | `700bda43-7a34-4507-b179-eeb93d7a7ca3` `SD_GPT_ROOT_MIPS64_LE` | ditto | ditto |
ac3a84
-| _Root Partition (HPPA/PARISC)_ | `1aacdb3b-5444-4138-bd9e-e5c2239b2346` `SD_GPT_ROOT_PARISC` | ditto | ditto |
ac3a84
-| _Root Partition (32-bit PowerPC)_ | `1de3f1ef-fa98-47b5-8dcd-4a860a654d78` `SD_GPT_ROOT_PPC` | ditto | ditto |
ac3a84
-| _Root Partition (64-bit PowerPC BigEndian)_ | `912ade1d-a839-4913-8964-a10eee08fbd2` `SD_GPT_ROOT_PPC64` | ditto | ditto |
ac3a84
-| _Root Partition (64-bit PowerPC LittleEndian)_ | `c31c45e6-3f39-412e-80fb-4809c4980599` `SD_GPT_ROOT_PPC64_LE` | ditto | ditto |
ac3a84
-| _Root Partition (RISC-V 32-bit)_ | `60d5a7fe-8e7d-435c-b714-3dd8162144e1` `SD_GPT_ROOT_RISCV32` | ditto | ditto |
ac3a84
-| _Root Partition (RISC-V 64-bit)_ | `72ec70a6-cf74-40e6-bd49-4bda08e8f224` `SD_GPT_ROOT_RISCV64` | ditto | ditto |
ac3a84
-| _Root Partition (s390)_ | `08a7acea-624c-4a20-91e8-6e0fa67d23f9` `SD_GPT_ROOT_S390` | ditto | ditto |
ac3a84
-| _Root Partition (s390x)_ | `5eead9a9-fe09-4a1e-a1d7-520d00531306` `SD_GPT_ROOT_S390X` | ditto | ditto |
ac3a84
-| _Root Partition (TILE-Gx)_ | `c50cdd70-3862-4cc3-90e1-809a8c93ee2c` `SD_GPT_ROOT_TILEGX` | ditto | ditto |
ac3a84
-| _Root Partition (x86)_ | `44479540-f297-41b2-9af7-d131d5f0458a` `SD_GPT_ROOT_X86` | ditto | ditto |
ac3a84
-| _Root Partition (amd64/x86_64)_ | `4f68bce3-e8cd-4db1-96e7-fbcaf984b709` `SD_GPT_ROOT_X86_64` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (Alpha)_ | `e18cf08c-33ec-4c0d-8246-c6c6fb3da024` `SD_GPT_USR_ALPHA` | Any native, optionally in LUKS | Similar semantics to root partition, but just the `/usr/` partition. |
ac3a84
-| _`/usr/` Partition (ARC)_ | `7978a683-6316-4922-bbee-38bff5a2fecc` `SD_GPT_USR_ARC` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (32-bit ARM)_ | `7d0359a3-02b3-4f0a-865c-654403e70625` `SD_GPT_USR_ARM` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (64-bit ARM/AArch64)_ | `b0e01050-ee5f-4390-949a-9101b17104e9` `SD_GPT_USR_ARM64` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (Itanium/IA-64)_ | `4301d2a6-4e3b-4b2a-bb94-9e0b2c4225ea` `SD_GPT_USR_IA64` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (LoongArch 64-bit)_ | `e611c702-575c-4cbe-9a46-434fa0bf7e3f` `SD_GPT_USR_LOONGARCH64` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (32-bit MIPS LittleEndian (mipsel))_ | `0f4868e9-9952-4706-979f-3ed3a473e947` `SD_GPT_USR_MIPS_LE` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (64-bit MIPS LittleEndian (mips64el))_ | `c97c1f32-ba06-40b4-9f22-236061b08aa8` `SD_GPT_USR_MIPS64_LE` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (HPPA/PARISC)_ | `dc4a4480-6917-4262-a4ec-db9384949f25` `SD_GPT_USR_PARISC` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (32-bit PowerPC)_ | `7d14fec5-cc71-415d-9d6c-06bf0b3c3eaf` `SD_GPT_USR_PPC` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (64-bit PowerPC BigEndian)_ | `2c9739e2-f068-46b3-9fd0-01c5a9afbcca` `SD_GPT_USR_PPC64` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (64-bit PowerPC LittleEndian)_ | `15bb03af-77e7-4d4a-b12b-c0d084f7491c` `SD_GPT_USR_PPC64_LE` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (RISC-V 32-bit)_ | `b933fb22-5c3f-4f91-af90-e2bb0fa50702` `SD_GPT_USR_RISCV32` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (RISC-V 64-bit)_ | `beaec34b-8442-439b-a40b-984381ed097d` `SD_GPT_USR_RISCV64` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (s390)_ | `cd0f869b-d0fb-4ca0-b141-9ea87cc78d66` `SD_GPT_USR_S390` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (s390x)_ | `8a4f5770-50aa-4ed3-874a-99b710db6fea` `SD_GPT_USR_S390X` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (TILE-Gx)_ | `55497029-c7c1-44cc-aa39-815ed1558630` `SD_GPT_USR_TILEGX` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (x86)_ | `75250d76-8cc6-458e-bd66-bd47cc81a812` `SD_GPT_USR_X86` | ditto | ditto |
ac3a84
-| _`/usr/` Partition (amd64/x86_64)_ | `8484680c-9521-48c6-9c11-b0720656f69e` `SD_GPT_USR_X86_64` | ditto | ditto |
ac3a84
-| _Root Verity Partition (Alpha)_ | `fc56d9e9-e6e5-4c06-be32-e74407ce09a5` `SD_GPT_ROOT_ALPHA_VERITY` | A dm-verity superblock followed by hash data | Contains dm-verity integrity hash data for the matching root partition. If this feature is used the partition UUID of the root partition should be the first 128 bits of the root hash of the dm-verity hash data, and the partition UUID of this dm-verity partition should be the final 128 bits of it, so that the root partition and its Verity partition can be discovered easily, simply by specifying the root hash. |
ac3a84
-| _Root Verity Partition (ARC)_ | `24b2d975-0f97-4521-afa1-cd531e421b8d` `SD_GPT_ROOT_ARC_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (32-bit ARM)_ | `7386cdf2-203c-47a9-a498-f2ecce45a2d6` `SD_GPT_ROOT_ARM_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (64-bit ARM/AArch64)_ | `df3300ce-d69f-4c92-978c-9bfb0f38d820` `SD_GPT_ROOT_ARM64_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (Itanium/IA-64)_ | `86ed10d5-b607-45bb-8957-d350f23d0571` `SD_GPT_ROOT_IA64_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (LoongArch 64-bit)_ | `f3393b22-e9af-4613-a948-9d3bfbd0c535` `SD_GPT_ROOT_LOONGARCH64_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (32-bit MIPS LittleEndian (mipsel))_ | `d7d150d2-2a04-4a33-8f12-16651205ff7b` `SD_GPT_ROOT_MIPS_LE_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (64-bit MIPS LittleEndian (mips64el))_ | `16b417f8-3e06-4f57-8dd2-9b5232f41aa6` `SD_GPT_ROOT_MIPS64_LE_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (HPPA/PARISC)_ | `d212a430-fbc5-49f9-a983-a7feef2b8d0e` `SD_GPT_ROOT_PARISC_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (64-bit PowerPC LittleEndian)_ | `906bd944-4589-4aae-a4e4-dd983917446a` `SD_GPT_ROOT_PPC64_LE_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (64-bit PowerPC BigEndian)_ | `9225a9a3-3c19-4d89-b4f6-eeff88f17631` `SD_GPT_ROOT_PPC64_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (32-bit PowerPC)_ | `98cfe649-1588-46dc-b2f0-add147424925` `SD_GPT_ROOT_PPC_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (RISC-V 32-bit)_ | `ae0253be-1167-4007-ac68-43926c14c5de` `SD_GPT_ROOT_RISCV32_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (RISC-V 64-bit)_ | `b6ed5582-440b-4209-b8da-5ff7c419ea3d` `SD_GPT_ROOT_RISCV64_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (s390)_ | `7ac63b47-b25c-463b-8df8-b4a94e6c90e1` `SD_GPT_ROOT_S390_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (s390x)_ | `b325bfbe-c7be-4ab8-8357-139e652d2f6b` `SD_GPT_ROOT_S390X_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (TILE-Gx)_ | `966061ec-28e4-4b2e-b4a5-1f0a825a1d84` `SD_GPT_ROOT_TILEGX_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (amd64/x86_64)_ | `2c7357ed-ebd2-46d9-aec1-23d437ec2bf5` `SD_GPT_ROOT_X86_64_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Partition (x86)_ | `d13c5d3b-b5d1-422a-b29f-9454fdc89d76` `SD_GPT_ROOT_X86_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (Alpha)_ | `8cce0d25-c0d0-4a44-bd87-46331bf1df67` `SD_GPT_USR_ALPHA_VERITY` | A dm-verity superblock followed by hash data | Similar semantics to root Verity partition, but just for the `/usr/` partition. |
ac3a84
-| _`/usr/` Verity Partition (ARC)_ | `fca0598c-d880-4591-8c16-4eda05c7347c` `SD_GPT_USR_ARC_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (32-bit ARM)_ | `c215d751-7bcd-4649-be90-6627490a4c05` `SD_GPT_USR_ARM_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (64-bit ARM/AArch64)_ | `6e11a4e7-fbca-4ded-b9e9-e1a512bb664e` `SD_GPT_USR_ARM64_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (Itanium/IA-64)_ | `6a491e03-3be7-4545-8e38-83320e0ea880` `SD_GPT_USR_IA64_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (LoongArch 64-bit)_ | `f46b2c26-59ae-48f0-9106-c50ed47f673d` `SD_GPT_USR_LOONGARCH64_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (32-bit MIPS LittleEndian (mipsel))_ | `46b98d8d-b55c-4e8f-aab3-37fca7f80752` `SD_GPT_USR_MIPS_LE_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (64-bit MIPS LittleEndian (mips64el))_ | `3c3d61fe-b5f3-414d-bb71-8739a694a4ef` `SD_GPT_USR_MIPS64_LE_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (HPPA/PARISC)_ | `5843d618-ec37-48d7-9f12-cea8e08768b2` `SD_GPT_USR_PARISC_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (64-bit PowerPC LittleEndian)_ | `ee2b9983-21e8-4153-86d9-b6901a54d1ce` `SD_GPT_USR_PPC64_LE_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (64-bit PowerPC BigEndian)_ | `bdb528a5-a259-475f-a87d-da53fa736a07` `SD_GPT_USR_PPC64_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (32-bit PowerPC)_ | `df765d00-270e-49e5-bc75-f47bb2118b09` `SD_GPT_USR_PPC_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (RISC-V 32-bit)_ | `cb1ee4e3-8cd0-4136-a0a4-aa61a32e8730` `SD_GPT_USR_RISCV32_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (RISC-V 64-bit)_ | `8f1056be-9b05-47c4-81d6-be53128e5b54` `SD_GPT_USR_RISCV64_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (s390)_ | `b663c618-e7bc-4d6d-90aa-11b756bb1797` `SD_GPT_USR_S390_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (s390x)_ | `31741cc4-1a2a-4111-a581-e00b447d2d06` `SD_GPT_USR_S390X_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (TILE-Gx)_ | `2fb4bf56-07fa-42da-8132-6b139f2026ae` `SD_GPT_USR_TILEGX_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (amd64/x86_64)_ | `77ff5f63-e7b6-4633-acf4-1565b864c0e6` `SD_GPT_USR_X86_64_VERITY` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Partition (x86)_ | `8f461b0d-14ee-4e81-9aa9-049b6fb97abd` `SD_GPT_USR_X86_VERITY` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (Alpha)_ | `d46495b7-a053-414f-80f7-700c99921ef8` `SD_GPT_ROOT_ALPHA_VERITY_SIG` | A serialized JSON object, see below | Contains a root hash and a PKCS#7 signature for it, permitting signed dm-verity GPT images. |
ac3a84
-| _Root Verity Signature Partition (ARC)_ | `143a70ba-cbd3-4f06-919f-6c05683a78bc` `SD_GPT_ROOT_ARC_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (32-bit ARM)_ | `42b0455f-eb11-491d-98d3-56145ba9d037` `SD_GPT_ROOT_ARM_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (64-bit ARM/AArch64)_ | `6db69de6-29f4-4758-a7a5-962190f00ce3` `SD_GPT_ROOT_ARM64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (Itanium/IA-64)_ | `e98b36ee-32ba-4882-9b12-0ce14655f46a` `SD_GPT_ROOT_IA64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (LoongArch 64-bit)_ | `5afb67eb-ecc8-4f85-ae8e-ac1e7c50e7d0` `SD_GPT_ROOT_LOONGARCH64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (32-bit MIPS LittleEndian (mipsel))_ | `c919cc1f-4456-4eff-918c-f75e94525ca5` `SD_GPT_ROOT_MIPS_LE_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (64-bit MIPS LittleEndian (mips64el))_ | `904e58ef-5c65-4a31-9c57-6af5fc7c5de7` `SD_GPT_ROOT_MIPS64_LE_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (HPPA/PARISC)_ | `15de6170-65d3-431c-916e-b0dcd8393f25` `SD_GPT_ROOT_PARISC_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (64-bit PowerPC LittleEndian)_ | `d4a236e7-e873-4c07-bf1d-bf6cf7f1c3c6` `SD_GPT_ROOT_PPC64_LE_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (64-bit PowerPC BigEndian)_ | `f5e2c20c-45b2-4ffa-bce9-2a60737e1aaf` `SD_GPT_ROOT_PPC64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (32-bit PowerPC)_ | `1b31b5aa-add9-463a-b2ed-bd467fc857e7` `SD_GPT_ROOT_PPC_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (RISC-V 32-bit)_ | `3a112a75-8729-4380-b4cf-764d79934448` `SD_GPT_ROOT_RISCV32_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (RISC-V 64-bit)_ | `efe0f087-ea8d-4469-821a-4c2a96a8386a` `SD_GPT_ROOT_RISCV64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (s390)_ | `3482388e-4254-435a-a241-766a065f9960` `SD_GPT_ROOT_S390_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (s390x)_ | `c80187a5-73a3-491a-901a-017c3fa953e9` `SD_GPT_ROOT_S390X_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (TILE-Gx)_ | `b3671439-97b0-4a53-90f7-2d5a8f3ad47b` `SD_GPT_ROOT_TILEGX_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (amd64/x86_64)_ | `41092b05-9fc8-4523-994f-2def0408b176` `SD_GPT_ROOT_X86_64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _Root Verity Signature Partition (x86)_ | `5996fc05-109c-48de-808b-23fa0830b676` `SD_GPT_ROOT_X86_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (Alpha)_ | `5c6e1c76-076a-457a-a0fe-f3b4cd21ce6e` `SD_GPT_USR_ALPHA_VERITY_SIG` | A serialized JSON object, see below | Similar semantics to root Verity signature partition, but just for the `/usr/` partition. |
ac3a84
-| _`/usr/` Verity Signature Partition (ARC)_ | `94f9a9a1-9971-427a-a400-50cb297f0f35` `SD_GPT_USR_ARC_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (32-bit ARM)_ | `d7ff812f-37d1-4902-a810-d76ba57b975a` `SD_GPT_USR_ARM_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (64-bit ARM/AArch64)_ | `c23ce4ff-44bd-4b00-b2d4-b41b3419e02a` `SD_GPT_USR_ARM64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (Itanium/IA-64)_ | `8de58bc2-2a43-460d-b14e-a76e4a17b47f` `SD_GPT_USR_IA64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (LoongArch 64-bit)_ | `b024f315-d330-444c-8461-44bbde524e99` `SD_GPT_USR_LOONGARCH64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (32-bit MIPS LittleEndian (mipsel))_ | `3e23ca0b-a4bc-4b4e-8087-5ab6a26aa8a9` `SD_GPT_USR_MIPS_LE_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (64-bit MIPS LittleEndian (mips64el))_ | `f2c2c7ee-adcc-4351-b5c6-ee9816b66e16` `SD_GPT_USR_MIPS64_LE_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (HPPA/PARISC)_ | `450dd7d1-3224-45ec-9cf2-a43a346d71ee` `SD_GPT_USR_PARISC_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (64-bit PowerPC LittleEndian)_ | `c8bfbd1e-268e-4521-8bba-bf314c399557` `SD_GPT_USR_PPC64_LE_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (64-bit PowerPC BigEndian)_ | `0b888863-d7f8-4d9e-9766-239fce4d58af` `SD_GPT_USR_PPC64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (32-bit PowerPC)_ | `7007891d-d371-4a80-86a4-5cb875b9302e` `SD_GPT_USR_PPC_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (RISC-V 32-bit)_ | `c3836a13-3137-45ba-b583-b16c50fe5eb4` `SD_GPT_USR_RISCV32_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (RISC-V 64-bit)_ | `d2f9000a-7a18-453f-b5cd-4d32f77a7b32` `SD_GPT_USR_RISCV64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (s390)_ | `17440e4f-a8d0-467f-a46e-3912ae6ef2c5` `SD_GPT_USR_S390_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (s390x)_ | `3f324816-667b-46ae-86ee-9b0c0c6c11b4` `SD_GPT_USR_S390X_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (TILE-Gx)_ | `4ede75e2-6ccc-4cc8-b9c7-70334b087510` `SD_GPT_USR_TILEGX_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (amd64/x86_64)_ | `e7bb33fb-06cf-4e81-8273-e543b413e2e2` `SD_GPT_USR_X86_64_VERITY_SIG` | ditto | ditto |
ac3a84
-| _`/usr/` Verity Signature Partition (x86)_ | `974a71c0-de41-43c3-be5d-5c5ccd1ad2c0` `SD_GPT_USR_X86_VERITY_SIG` | ditto | ditto |
ac3a84
-| _EFI System Partition_ | `c12a7328-f81f-11d2-ba4b-00a0c93ec93b` `SD_GPT_ESP` | VFAT | The ESP used for the current boot is automatically mounted to `/efi/` (or `/boot/` as fallback), unless a different partition is mounted there (possibly via `/etc/fstab`, or because the Extended Boot Loader Partition — see below — exists) or the directory is non-empty on the root disk.  This partition type is defined by the [UEFI Specification](http://www.uefi.org/specifications). |
ac3a84
-| _Extended Boot Loader Partition_ | `bc13c2ff-59e6-4262-a352-b275fd6f7172` `SD_GPT_XBOOTLDR` | Typically VFAT | The Extended Boot Loader Partition (XBOOTLDR) used for the current boot is automatically mounted to `/boot/`, unless a different partition is mounted there (possibly via `/etc/fstab`) or the directory is non-empty on the root disk. This partition type is defined by the [Boot Loader Specification](https://systemd.io/BOOT_LOADER_SPECIFICATION). |
ac3a84
-| _Swap_ | `0657fd6d-a4ab-43c4-84e5-0933c84b4f4f` `SD_GPT_SWAP` | Swap, optionally in LUKS | All swap partitions on the disk containing the root partition are automatically enabled. If the partition is encrypted with LUKS, the device mapper file will be named `/dev/mapper/swap`. This partition type predates the Discoverable Partitions Specification. |
ac3a84
-| _Home Partition_ | `933ac7e1-2eb4-4f13-b844-0e14e2aef915` `SD_GPT_HOME` | Any native, optionally in LUKS | The first partition with this type UUID on the disk containing the root partition is automatically mounted to `/home/`. If the partition is encrypted with LUKS, the device mapper file will be named `/dev/mapper/home`. |
ac3a84
-| _Server Data Partition_ | `3b8f8425-20e0-4f3b-907f-1a25a76f98e8` `SD_GPT_SRV` | Any native, optionally in LUKS | The first partition with this type UUID on the disk containing the root partition is automatically mounted to `/srv/`. If the partition is encrypted with LUKS, the device mapper file will be named `/dev/mapper/srv`. |
ac3a84
-| _Variable Data Partition_ | `4d21b016-b534-45c2-a9fb-5c16e091fd2d` `SD_GPT_VAR` | Any native, optionally in LUKS | The first partition with this type UUID on the disk containing the root partition is automatically mounted to `/var/` — under the condition that its partition UUID matches the first 128 bits of `HMAC-SHA256(machine-id, 0x4d21b016b53445c2a9fb5c16e091fd2d)` (i.e. the SHA256 HMAC hash of the binary type UUID keyed by the machine ID as read from [`/etc/machine-id`](https://www.freedesktop.org/software/systemd/man/machine-id.html). This special requirement is made because `/var/` (unlike the other partition types listed here) is inherently private to a specific installation and cannot possibly be shared between multiple OS installations on the same disk, and thus should be bound to a specific instance of the OS, identified by its machine ID. If the partition is encrypted with LUKS, the device mapper file will be named `/dev/mapper/var`. |
ac3a84
-| _Temporary Data Partition_ | `7ec6f557-3bc5-4aca-b293-16ef5df639d1` `SD_GPT_TMP` | Any native, optionally in LUKS | The first partition with this type UUID on the disk containing the root partition is automatically mounted to `/var/tmp/`. If the partition is encrypted with LUKS, the device mapper file will be named `/dev/mapper/tmp`. Note that the intended mount point is indeed `/var/tmp/`, not `/tmp/`. The latter is typically maintained in memory via `tmpfs` and does not require a partition on disk. In some cases it might be desirable to make `/tmp/` persistent too, in which case it is recommended to make it a symlink or bind mount to `/var/tmp/`, thus not requiring its own partition type UUID. |
ac3a84
-| _Per-user Home Partition_ | `773f91ef-66d4-49b5-bd83-d683bf40ad16` `SD_GPT_USER_HOME` | Any native, optionally in LUKS | A home partition of a user, managed by [`systemd-homed`](https://www.freedesktop.org/software/systemd/man/systemd-homed.html). |
ac3a84
-| _Generic Linux Data Partition_ | `0fc63daf-8483-4772-8e79-3d69d8477de4` `SD_GPT_LINUX_GENERIC` | Any native, optionally in LUKS | No automatic mounting takes place for other Linux data partitions. This partition type should be used for all partitions that carry Linux file systems. The installer needs to mount them explicitly via entries in `/etc/fstab`. Optionally, these partitions may be encrypted with LUKS. This partition type predates the Discoverable Partitions Specification. |
ac3a84
-
ac3a84
-Other GPT type IDs might be used on Linux, for example to mark software RAID or
ac3a84
-LVM partitions. The definitions of those GPT types is outside of the scope of
ac3a84
-this specification.
ac3a84
-
ac3a84
-[systemd-id128(1)](https://www.freedesktop.org/software/systemd/man/systemd-id128.html)'s
ac3a84
-`show` command may be used to list those GPT partition type UUIDs.
ac3a84
-
ac3a84
-## Partition Names
ac3a84
-
ac3a84
-For partitions of the types listed above it is recommended to use
ac3a84
-human-friendly, descriptive partition names in the GPT partition table, for
ac3a84
-example "*Home*", "*Server* *Data*", "*Fedora* *Root*" and similar, possibly
ac3a84
-localized.
ac3a84
-
ac3a84
-For the Root/Verity/Verity signature partitions it might make sense to use a
ac3a84
-versioned naming scheme reflecting the OS name and its version,
ac3a84
-e.g. "fooOS_2021.4" or similar.
ac3a84
-
ac3a84
-## Partition Attribute Flags
ac3a84
-
ac3a84
-This specification defines three GPT partition attribute flags that may be set
ac3a84
-for the partition types defined above:
ac3a84
-
ac3a84
-1. For the root, `/usr/`, Verity, Verity signature, home, server data, variable
ac3a84
-   data, temporary data, swap, and extended boot loader partitions, the
ac3a84
-   partition flag bit 63 ("*no-auto*", *SD_GPT_FLAG_NO_AUTO*) may be used to
ac3a84
-   turn off auto-discovery for the specific partition. If set, the partition
ac3a84
-   will not be automatically mounted or enabled.
ac3a84
-
ac3a84
-2. For the root, `/usr/`, Verity, Verity signature home, server data, variable
ac3a84
-   data, temporary data and extended boot loader partitions, the partition flag
ac3a84
-   bit 60 ("*read-only*", *SD_GPT_FLAG_READ_ONLY*) may be used to mark a
ac3a84
-   partition for read-only mounts only. If set, the partition will be mounted
ac3a84
-   read-only instead of read-write. Note that the variable data partition and
ac3a84
-   the temporary data partition will generally not be able to serve their
ac3a84
-   purpose if marked read-only, since by their very definition they are
ac3a84
-   supposed to be mutable. (The home and server data partitions are generally
ac3a84
-   assumed to be mutable as well, but the requirement for them is not equally
ac3a84
-   strong.) Because of that, while the read-only flag is defined and supported,
ac3a84
-   it's almost never a good idea to actually use it for these partitions. Also
ac3a84
-   note that Verity and signature partitions are by their semantics always
ac3a84
-   read-only. The flag is hence of little effect for them, and it is
ac3a84
-   recommended to set it unconditionally for the Verity and signature partition
ac3a84
-   types.
ac3a84
-
ac3a84
-3. For the root, `/usr/`, home, server data, variable data, temporary data and
ac3a84
-   extended boot loader partitions, the partition flag bit 59
ac3a84
-   ("*grow-file-system*", *SD_GPT_FLAG_GROWFS*) may be used to mark a partition
ac3a84
-   for automatic growing of the contained file system to the size of the
ac3a84
-   partition when mounted. Tools that automatically mount disk image with a GPT
ac3a84
-   partition table are suggested to implicitly grow the contained file system
ac3a84
-   to the partition size they are contained in, if they are found to be
ac3a84
-   smaller. This flag is without effect on partitions marked "*read-only*".
ac3a84
-
ac3a84
-Note that the first two flag definitions happen to correspond nicely to the
ac3a84
-same ones used by Microsoft Basic Data Partitions.
ac3a84
-
ac3a84
-All three of these flags generally affect only auto-discovery and automatic
ac3a84
-mounting of disk images. If partitions marked with these flags are mounted
ac3a84
-using low-level commands like
ac3a84
-[mount(8)](https://man7.org/linux/man-pages/man2/mount.8.html) or directly with
ac3a84
-[mount(2)](https://man7.org/linux/man-pages/man2/mount.2.html), they typically
ac3a84
-have no effect.
ac3a84
-
ac3a84
-## Verity
ac3a84
-
ac3a84
-The Root/`/usr/` partition types and their matching Verity and Verity signature
ac3a84
-partitions enable relatively automatic handling of `dm-verity` protected
ac3a84
-setups. These types are defined with two modes of operation in mind:
ac3a84
-
ac3a84
-1. A trusted Verity root hash is passed in externally, for example is specified
ac3a84
-   on the kernel command line that is signed along with the kernel image using
ac3a84
-   SecureBoot PE signing (which in turn is tested against a set of
ac3a84
-   firmware-provided set of signing keys). If so, discovery and setup of a
ac3a84
-   Verity volume may be fully automatic: if the root partition's UUID is chosen
ac3a84
-   to match the first 128 bit of the root hash, and the matching Verity
ac3a84
-   partition UUIDs is chosen to match the last 128bit of the root hash, then
ac3a84
-   automatic discovery and match-up of the two partitions is possible, as the
ac3a84
-   root hash is enough to both find the partitions and then combine them in a
ac3a84
-   Verity volume. In this mode a Verity signature partition is not used and
ac3a84
-   unnecessary.
ac3a84
-
ac3a84
-2. A Verity signature partition is included on the disk, with a signature to be
ac3a84
-   tested against a system-provided set of signing keys. The signature
ac3a84
-   partition primarily contains two fields: the root hash to use, and a PKCS#7
ac3a84
-   signature of it, using a signature key trusted by the OS. If so, discovery
ac3a84
-   and setup of a Verity volume may be fully automatic. First, the specified
ac3a84
-   root hash is validated with the signature and the OS-provided trusted
ac3a84
-   keys. If the signature checks out the root hash is then used in the same way
ac3a84
-   as in the first mode of operation described above.
ac3a84
-
ac3a84
-Both modes of operation may be combined in a single image. This is particularly
ac3a84
-useful for images that shall be usable in two different contexts: for example
ac3a84
-an image that shall be able to boot directly on UEFI systems (in which
ac3a84
-case it makes sense to include the root hash on the kernel command line that is
ac3a84
-included in the signed kernel image to boot, as per mode of operation #1
ac3a84
-above), but also be able to used as image for a container engine (such as
ac3a84
-`systemd-nspawn`), which can use the signature partition to validate the image,
ac3a84
-without making use of the signed kernel image (and thus following mode of
ac3a84
-operation #2).
ac3a84
-
ac3a84
-The Verity signature partition's contents should be a serialized JSON object in
ac3a84
-text form, padded with NUL bytes to the next multiple of 4096 bytes in
ac3a84
-size. Currently three fields are defined for the JSON object:
ac3a84
-
ac3a84
-1. The (mandatory) `rootHash` field should be a string containing the Verity root hash,
ac3a84
-   formatted as series of (lowercase) hex characters.
ac3a84
-
ac3a84
-2. The (mandatory) `signature` field should be a string containing the PKCS#7
ac3a84
-   signature of the root hash, in Base64-encoded DER format. This should be the
ac3a84
-   same format used by the Linux kernel's dm-verity signature logic, i.e. the
ac3a84
-   signed data should be the exact string representation of the hash, as stored
ac3a84
-   in `rootHash` above.
ac3a84
-
ac3a84
-3. The (optional) `certificateFingerprint` field should be a string containing
ac3a84
-   a SHA256 fingerprint of the X.509 certificate in DER format for the key that
ac3a84
-   signed the root hash, formatted as series of (lowercase) hex characters (no `:`
ac3a84
-   separators or such).
ac3a84
-
ac3a84
-More fields might be added in later revisions of this specification.
ac3a84
-
ac3a84
-## Suggested Mode of Operation
ac3a84
-
ac3a84
-An *installer* that repartitions the hard disk _should_ use the above UUID
ac3a84
-partition types for appropriate partitions it creates.
ac3a84
-
ac3a84
-An *installer* which supports a "manual partitioning" interface _may_ choose to
ac3a84
-pre-populate the interface with swap, `/home/`, `/srv/`, `/var/tmp/` partitions
ac3a84
-of pre-existing Linux installations, identified with the GPT type UUIDs
ac3a84
-above. The installer should not pre-populate such an interface with any
ac3a84
-identified root, `/usr` or `/var/` partition unless the intention is to
ac3a84
-overwrite an existing operating system that might be installed.
ac3a84
-
ac3a84
-An *installer* _may_ omit creating entries in `/etc/fstab` for root, `/home/`,
ac3a84
-`/srv/`, `/var/`, `/var/tmp` and for the swap partitions if they use these UUID
ac3a84
-partition types, and are the first partitions on the disk of each type. If the
ac3a84
-ESP shall be mounted to `/efi/` (or `/boot/`), it may additionally omit
ac3a84
-creating the entry for it in `/etc/fstab`.  If the EFI partition shall not be
ac3a84
-mounted to `/efi/` or `/boot/`, it _must_ create `/etc/fstab` entries for them.
ac3a84
-If other partitions are used (for example for `/usr/local/` or
ac3a84
-`/var/lib/mysql/`), the installer _must_ register these in `/etc/fstab`.  The
ac3a84
-`root=` parameter passed to the kernel by the boot loader may be omitted if the
ac3a84
-root partition is the first one on the disk of its type.  If the root partition
ac3a84
-is not the first one on the disk, the `root=` parameter _must_ be passed to the
ac3a84
-kernel by the boot loader.  An installer that mounts a root, `/usr/`, `/home/`,
ac3a84
-`/srv/`, `/var/`, or `/var/tmp/` file system with the partition types defined
ac3a84
-as above which contains a LUKS header _must_ call the device mapper device
ac3a84
-"root", "usr", "home", "srv", "var" or "tmp", respectively.  This is necessary
ac3a84
-to ensure that the automatic discovery will never result in different device
ac3a84
-mapper names than any static configuration by the installer, thus eliminating
ac3a84
-possible naming conflicts and ambiguities.
ac3a84
-
ac3a84
-An *operating* *system* _should_ automatically discover and mount the first
ac3a84
-root partition that does not have the no-auto flag set (as described above) by
ac3a84
-scanning the disk containing the currently used EFI ESP.  It _should_
ac3a84
-automatically discover and mount the first `/usr/`, `/home/`, `/srv/`, `/var/`,
ac3a84
-`/var/tmp/` and swap partitions that do not have the no-auto flag set by
ac3a84
-scanning the disk containing the discovered root partition.  It should
ac3a84
-automatically discover and mount the partition containing the currently used
ac3a84
-EFI ESP to `/efi/` (or `/boot/` as fallback).  It should automatically discover
ac3a84
-and mount the partition containing the currently used Extended Boot Loader
ac3a84
-Partition to `/boot/`. It _should not_ discover or automatically mount
ac3a84
-partitions with other UUID partition types, or partitions located on other
ac3a84
-disks, or partitions with the no-auto flag set.  User configuration shall
ac3a84
-always override automatic discovery and mounting.  If a root, `/usr/`,
ac3a84
-`/home/`, `/srv/`, `/boot/`, `/var/`, `/var/tmp/`, `/efi/`, `/boot/` or swap
ac3a84
-partition is listed in `/etc/fstab` or with `root=` on the kernel command line,
ac3a84
-it _must_ take precedence over automatically discovered partitions.  If a
ac3a84
-`/home/`, `/usr/`, `/srv/`, `/boot/`, `/var/`, `/var/tmp/`, `/efi/` or `/boot/`
ac3a84
-directory is found to be populated already in the root partition, the automatic
ac3a84
-discovery _must not_ mount any discovered file system over it. Optionally, in
ac3a84
-case of the root, `/usr/` and their Verity partitions instead of strictly
ac3a84
-mounting the first suitable partition an OS might choose to mount the partition
ac3a84
-whose label compares the highest according to `strverscmp()` or similar logic,
ac3a84
-in order to implement a simple partition-based A/B versioning scheme. The
ac3a84
-precise rules are left for the implementation to decide, but when in doubt
ac3a84
-earlier partitions (by their index) should always win over later partitions if
ac3a84
-the label comparison is inconclusive.
ac3a84
-
ac3a84
-A *container* *manager* should automatically discover and mount the root,
ac3a84
-`/usr/`, `/home/`, `/srv/`, `/var/`, `/var/tmp/` partitions inside a container
ac3a84
-disk image.  It may choose to mount any discovered ESP and/or XBOOTLDR
ac3a84
-partition to `/efi/` or `/boot/`. It should ignore any swap should they be
ac3a84
-included in a container disk image.
ac3a84
-
ac3a84
-If a btrfs file system is automatically discovered and mounted by the operating
ac3a84
-system/container manager it will be mounted with its *default* subvolume.  The
ac3a84
-installer should make sure to set the default subvolume correctly using "btrfs
ac3a84
-subvolume set-default".
ac3a84
-
ac3a84
-## Sharing of File Systems between Installations
ac3a84
-
ac3a84
-If two Linux-based operating systems are installed on the same disk, the scheme
ac3a84
-above suggests that they may share the swap, `/home/`, `/srv/`, `/var/tmp/`,
ac3a84
-ESP, XBOOTLDR. However, they should each have their own root, `/usr/` and
ac3a84
-`/var/` partition.
ac3a84
-
ac3a84
-## Frequently Asked Questions
ac3a84
-
ac3a84
-### Why are you taking my `/etc/fstab` away?
ac3a84
-
ac3a84
-We are not. `/etc/fstab` always overrides automatic discovery and is indeed
ac3a84
-mentioned in the specifications.  We are simply trying to make the boot and
ac3a84
-installation processes of Linux a bit more robust and self-descriptive.
ac3a84
-
ac3a84
-### Why did you only define the root partition for these listed architectures?
ac3a84
-
ac3a84
-Please submit a patch that adds appropriate partition type UUIDs for the
ac3a84
-architecture of your choice should they be missing so far. The only reason they
ac3a84
-aren't defined yet is that nobody submitted them yet.
ac3a84
-
ac3a84
-### Why define distinct root partition UUIDs for the various architectures?
ac3a84
-
ac3a84
-This allows disk images that may be booted on multiple architectures to use
ac3a84
-discovery of the appropriate root partition on each architecture.
ac3a84
-
ac3a84
-### Doesn't this break multi-boot scenarios?
ac3a84
-
ac3a84
-No, it doesn't.  The specification says that installers may not stop creating
ac3a84
-`/etc/fstab` or stop including `root=` on the kernel command line, unless the used
ac3a84
-partitions are the first ones of their type on the disk. Additionally,
ac3a84
-`/etc/fstab` and `root=` both override automatic discovery.  Multi-boot is hence
ac3a84
-well supported, since it doesn't change anything for anything but the first
ac3a84
-installation.
ac3a84
-
ac3a84
-That all said, it's not expected that generic installers generally stop setting
ac3a84
-`root=` and creating `/etc/fstab` anyway. The option to drop these configuration
ac3a84
-bits is primarily something for appliance-like devices.  However, generic
ac3a84
-installers should *still* set the right GPT partition types for the partitions
ac3a84
-they create so that container managers, partition tools and administrators can
ac3a84
-benefit.  Phrased differently, this specification introduces A) the
ac3a84
-*recommendation* to use the newly defined partition types to tag things
ac3a84
-properly and B) the *option* to then drop `root=` and `/etc/fstab`.  While we
ac3a84
-advertise A) to *all* installers, we only propose B) for simpler,
ac3a84
-appliance-like installations.
ac3a84
-
ac3a84
-### What partitioning tools will create a DPS-compliant partition table?
ac3a84
-
ac3a84
-As of util-linux 2.25.2, the `fdisk` tool provides type codes to create the
ac3a84
-root, home, and swap partitions that the DPS expects. By default, `fdisk` will
ac3a84
-create an old-style MBR, not a GPT, so typing `l` to list partition types will
ac3a84
-not show the choices to let you set the correct UUID. Make sure to first create
ac3a84
-an empty GPT, then type `l` in order for the DPS-compliant type codes to be
ac3a84
-available.
ac3a84
-
ac3a84
-The `gdisk` tool (from version 1.0.5 onward) and its variants (`sgdisk`,
ac3a84
-`cgdisk`) also support creation of partitions with a matching type code.
ac3a84
-
ac3a84
-## Links
ac3a84
-
ac3a84
-[Boot Loader Specification](BOOT_LOADER_SPECIFICATION.md)
ac3a84
-[Boot Loader Interface](BOOT_LOADER_INTERFACE.md)
ac3a84
-[Safely Building Images](BUILDING_IMAGES.md)
ac3a84
-[`systemd-boot(7)`](https://www.freedesktop.org/software/systemd/man/systemd-boot.html)
ac3a84
-[`bootctl(1)`](https://www.freedesktop.org/software/systemd/man/bootctl.html)
ac3a84
-[`systemd-gpt-auto-generator(8)`](https://www.freedesktop.org/software/systemd/man/systemd-gpt-auto-generator.html)
ac3a84
+[This content has moved to the UAPI group website](https://uapi-group.org/specifications/specs/discoverable_partitions_specification/)