Commit a2a266e0 authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Peter Korsgaard
Browse files

fs/ext2: remove count- and time-based fsck



Set the count- and time-based checks intervals to 0, thus effectively
disabling automatic checks at boot (after a suggestion by Arnout).

Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 5fd27fc8
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -73,8 +73,11 @@ e2tunefsck() {
           "${IMG##*/}" "${GEN}"

    # e2fsck will force a *random* UUID, which is bad
    # for reproducibility, so we do not want it
    tune2fs -U clear "${IMG}"
    # for reproducibility, so we do not want it.
    # Remove count- and time-based checks, they are not welcome
    # on embedded devices, where they can cause serious boot-time
    # issues by tremendously slowing down the boot.
    tune2fs -U clear -c 0 -i 0 "${IMG}"
}

# Check we know what generation to generate