From: Yann E. MORIN Date: Thu, 11 Apr 2013 12:17:54 +0000 (+0000) Subject: fs/ext2: remove count- and time-based fsck X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a2a266e0cfb94fe623879e9ac43a3894acf05b62;p=buildroot.git 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: "Yann E. MORIN" Cc: Arnout Vandecappelle Cc: Thomas Petazzoni Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- diff --git a/fs/ext2/genext2fs.sh b/fs/ext2/genext2fs.sh index 76f454c3cc..a4eb35162c 100755 --- a/fs/ext2/genext2fs.sh +++ b/fs/ext2/genext2fs.sh @@ -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