Fixed nilfs2 fsck error at boot because its not needed bu the nilfs2 filesystem

This commit is contained in:
vicgc 2018-06-06 00:24:04 +02:00
parent c958516cb3
commit ee4bb9454e

View File

@ -251,6 +251,9 @@ checkFS() {
# Skip fsck for bcachefs - not implemented yet.
if [ "$fsType" = bcachefs ]; then return 0; fi
# Skip fsck for nilfs2 - not needed by design and no fsck tool for this filesystem.
if [ "$fsType" = nilfs2 ]; then return 0; fi
# Skip fsck for inherently readonly filesystems.
if [ "$fsType" = squashfs ]; then return 0; fi