nixos/stage-1: Don't check resilient filesystems

wip/yesman
William A. Kennington III 10 years ago committed by Eelco Dolstra
parent 628df3e423
commit beddd36c95
  1. 3
      nixos/modules/system/boot/stage-1-init.sh

@ -194,6 +194,9 @@ checkFS() {
# Don't check ROM filesystems.
if [ "$fsType" = iso9660 -o "$fsType" = udf ]; then return 0; fi
# Don't check resilient COWs as they validate the fs structures at mount time
if [ "$fsType" = btrfs -o "$fsType" = zfs ]; then return 0; fi
# If we couldn't figure out the FS type, then skip fsck.
if [ "$fsType" = auto ]; then
echo 'cannot check filesystem with type "auto"!'

Loading…
Cancel
Save