nixos/stage-1: added F2FS resizing
F2FS is used on Raspberry Pi-like devices to enhance SD card performance. Allowing F2FS resizing would help in automatic deploying of SD card images without a Linux box to resize the file system offline.
This commit is contained in:
parent
8807039549
commit
c24e917325
1 changed files with 4 additions and 0 deletions
|
@ -336,6 +336,10 @@ mountFS() {
|
||||||
echo "resizing $device..."
|
echo "resizing $device..."
|
||||||
e2fsck -fp "$device"
|
e2fsck -fp "$device"
|
||||||
resize2fs "$device"
|
resize2fs "$device"
|
||||||
|
else [ "$fsType" = f2fs ]; then
|
||||||
|
echo "resizing $device..."
|
||||||
|
fsck.f2fs -fp "$device"
|
||||||
|
resize.f2fs "$device"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue