From 037114d9574abb5946d9f2a1c9aa2240908f549b Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Mon, 1 Feb 2021 17:46:01 +0100 Subject: [PATCH] docs/news: describe new blueprint kernel option --- docs/news/unreleased/kernel-customizations-name.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docs/news/unreleased/kernel-customizations-name.md diff --git a/docs/news/unreleased/kernel-customizations-name.md b/docs/news/unreleased/kernel-customizations-name.md new file mode 100644 index 00000000000..bb5c4f290a6 --- /dev/null +++ b/docs/news/unreleased/kernel-customizations-name.md @@ -0,0 +1,13 @@ +# Blueprint: Kernel name customization + +When creating ostree commits, only one kernel package can be installed at a +time, otherwise creating the commit will fail in rpm-ostree. This prevents +ostree type builds (RHEL for Edge and Fedora IoT) to add alternative kernels, +in particular, the real-time kernel (`kernel-rt`). + +Blueprints now support defining the name of the kernel to be used in an image, +through the `customizations.kernel.name` key. If not specified, the default +`kernel` package is included as before. + +Relevant PRs: +https://github.com/osbuild/osbuild-composer/pull/1175