From 560390f3e267e20bdd3b51d67e5ed8f3774dd4d9 Mon Sep 17 00:00:00 2001 From: axtlos Date: Sat, 23 Apr 2022 19:33:29 +0200 Subject: [PATCH] remove duplicate fs --- src/functions/partition.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/functions/partition.rs b/src/functions/partition.rs index 3225067..5f47379 100755 --- a/src/functions/partition.rs +++ b/src/functions/partition.rs @@ -132,17 +132,6 @@ pub fn fmt_mount(mountpoint: &String, filesystem: &String, blockdevice: &String) "Formatting {blockdevice} as minix", ) } - "vfat" => { - exec_eval( - exec( - "mkfs.vfat", - vec![ - String::from(blockdevice), - ], - ), - "Formatting {blockdevice} as vfat", - ) - } _ => { crash( "Unknown filesystem {filesystem}, used in partition {blockdevice}",