Merge pull request #52 from ZVNexus/f2fs

Add F2FS support
This commit is contained in:
MatMoul 2019-06-20 21:53:22 +02:00 committed by GitHub
commit bd20897505
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
archfi
View file

@ -592,6 +592,7 @@ formatdevice(){
options+=("ext3" "")
options+=("ext2" "")
options+=("xfs" "")
options+=("f2fs" "")
options+=("jfs" "")
if [ ! "$3" = "noluks" ]; then
options+=("luks" "encrypted")
@ -640,6 +641,10 @@ formatdevice(){
echo "mkfs.xfs -f $2"
mkfs.xfs -f $2
;;
f2fs)
echo "mkfs.f2fs $2"
mkfs.f2fs $2
;;
jfs)
echo "mkfs.xfs -f $2"
mkfs.jfs -f $2