From 267bb208bae33e993dba798d990b7d3fa44761e8 Mon Sep 17 00:00:00 2001 From: Denis Pynkin <denis.pynkin@collabora.com> Date: Wed, 20 Feb 2019 00:31:19 +0300 Subject: [PATCH] Enable rootfs check during boot time Add options to kernel command line `fsck.mode=auto` and `fsck.repair=yes` to allow file system check by initramfs script. Signed-off-by: Denis Pynkin <denis.pynkin@collabora.com> --- apertis-image-sdk.yaml | 2 +- apertis-image-uboot.yaml | 2 +- apertis-image-uefi.yaml | 2 +- apertis-ostree-image-uboot.yaml | 2 +- apertis-ostree-image-uefi.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apertis-image-sdk.yaml b/apertis-image-sdk.yaml index 8ecb8438..eb0d2ded 100644 --- a/apertis-image-sdk.yaml +++ b/apertis-image-sdk.yaml @@ -7,7 +7,7 @@ {{ $ospack := or .ospack (printf "ospack_%s-%s-%s_%s" $suite $architecture $type $timestamp) }} {{ $image := or .image (printf "apertis-%s-%s-%s_%s" $suite $type $architecture $timestamp) }} -{{ $cmdline := or .cmdline "console=tty0 console=ttyS0,115200n8 rootwait ro quiet splash plymouth.ignore-serial-consoles" }} +{{ $cmdline := or .cmdline "console=tty0 console=ttyS0,115200n8 rootwait ro quiet splash plymouth.ignore-serial-consoles fsck.mode=auto fsck.repair=yes" }} {{ $demopack := or .demopack "disabled" }} diff --git a/apertis-image-uboot.yaml b/apertis-image-uboot.yaml index 16c85a51..1a3ea437 100644 --- a/apertis-image-uboot.yaml +++ b/apertis-image-uboot.yaml @@ -6,7 +6,7 @@ {{ $ospack := or .ospack (printf "ospack_%s-%s-%s_%s" $suite $architecture $type $timestamp) }} {{ $image := or .image (printf "apertis-%s-%s-%s_%s" $suite $type $architecture $timestamp) }} -{{ $cmdline := or .cmdline " rootwait ro" }} +{{ $cmdline := or .cmdline " rootwait ro fsck.mode=auto fsck.repair=yes" }} {{ $demopack := or .demopack "disabled" }} {{ if eq $type "minimal" }} diff --git a/apertis-image-uefi.yaml b/apertis-image-uefi.yaml index f5730f34..4421f766 100644 --- a/apertis-image-uefi.yaml +++ b/apertis-image-uefi.yaml @@ -6,7 +6,7 @@ {{ $ospack := or .ospack (printf "ospack_%s-%s-%s_%s" $suite $architecture $type $timestamp) }} {{ $image := or .image (printf "apertis-%s-%s-%s_%s" $suite $type $architecture $timestamp) }} -{{ $cmdline := or .cmdline "console=tty0 console=ttyS0,115200n8 rootwait ro quiet splash plymouth.ignore-serial-consoles" }} +{{ $cmdline := or .cmdline "console=tty0 console=ttyS0,115200n8 rootwait ro quiet splash plymouth.ignore-serial-consoles fsck.mode=auto fsck.repair=yes" }} {{ $demopack := or .demopack "disabled" }} {{ if eq $type "minimal" }} diff --git a/apertis-ostree-image-uboot.yaml b/apertis-ostree-image-uboot.yaml index d643aa96..9ccb6535 100644 --- a/apertis-ostree-image-uboot.yaml +++ b/apertis-ostree-image-uboot.yaml @@ -9,7 +9,7 @@ {{ $branch := or .branch (printf "%s/%s/%s-%s/%s" $osname $suite $architecture $board $type) }} {{ $ostree := or .ostree "repo" }} -{{ $cmdline := or .cmdline "rootwait rw quiet splash plymouth.ignore-serial-consoles" }} +{{ $cmdline := or .cmdline "rootwait rw quiet splash plymouth.ignore-serial-consoles fsck.mode=auto fsck.repair=yes" }} {{ $demopack := or .demopack "disabled" }} diff --git a/apertis-ostree-image-uefi.yaml b/apertis-ostree-image-uefi.yaml index c58e1ecf..d5cfc721 100644 --- a/apertis-ostree-image-uefi.yaml +++ b/apertis-ostree-image-uefi.yaml @@ -9,7 +9,7 @@ {{ $branch := or .branch (printf "%s/%s/%s-%s/%s" $osname $suite $architecture $board $type) }} {{ $ostree := or .ostree "repo" }} -{{ $cmdline := or .cmdline "console=tty0 console=ttyS0,115200n8 rootwait rw quiet splash plymouth.ignore-serial-consoles" }} +{{ $cmdline := or .cmdline "console=tty0 console=ttyS0,115200n8 rootwait rw quiet splash plymouth.ignore-serial-consoles fsck.mode=auto fsck.repair=yes" }} {{ $demopack := or .demopack "disabled" }} -- GitLab