From 638d5b834ddb5c35319c4ca3dd6e482be10efdd2 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Wed, 16 Nov 2022 15:12:01 +0100 Subject: [PATCH] test/data: add 'rw' kernel flag to ostree image A recent commit (8a7b6d3) fixed the ostree config stage and thus we actually properly set the readonly flag for the deployment. This broke the image since we did not specify the `rw` kernel flag and as a consequence the ostree mounting code in the initrd broke. --- test/data/manifests/fedora-ostree-image.json | 1 + test/data/manifests/fedora-ostree-image.mpp.json | 1 + 2 files changed, 2 insertions(+) diff --git a/test/data/manifests/fedora-ostree-image.json b/test/data/manifests/fedora-ostree-image.json index e9ad408a..4b434d62 100644 --- a/test/data/manifests/fedora-ostree-image.json +++ b/test/data/manifests/fedora-ostree-image.json @@ -1014,6 +1014,7 @@ "label": "root" }, "kernel_opts": [ + "rw", "console=tty0", "console=ttyS0", "systemd.log_target=console", diff --git a/test/data/manifests/fedora-ostree-image.mpp.json b/test/data/manifests/fedora-ostree-image.mpp.json index 7bcf4bb3..541a9a27 100644 --- a/test/data/manifests/fedora-ostree-image.mpp.json +++ b/test/data/manifests/fedora-ostree-image.mpp.json @@ -128,6 +128,7 @@ "label": "root" }, "kernel_opts": [ + "rw", "console=tty0", "console=ttyS0", "systemd.log_target=console",