[USETUP]
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Thu, 17 Apr 2014 20:43:41 +0000 (20:43 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Thu, 17 Apr 2014 20:43:41 +0000 (20:43 +0000)
Disable EXT2 formatting because it *DOESN'T WORK* and cause problems to newcomers. Please reenable it *ONLY WHEN* you know it *REALLY* works !!!!!!!!!!
CORE-3091 CORE-3073 CORE-4003 #comment EXT2 formatting disabled in USETUP in revision 62766. Please reenable ONLY when you know it works.

svn path=/trunk/; revision=62766

reactos/base/setup/usetup/interface/usetup.c
reactos/base/setup/usetup/native/fslist.c

index b1a09be..d8c73af 100644 (file)
@@ -2392,8 +2392,10 @@ FormatPartitionPage(PINPUT_RECORD Ir)
                     }
                 }
             }
+#if 0
             else if (wcscmp(FileSystemList->Selected->FileSystem, L"EXT2") == 0)
                 PartEntry->PartInfo[PartNum].PartitionType = PARTITION_EXT2;
+#endif
             else if (!FileSystemList->Selected->FormatFunc)
                 return QUIT_PAGE;
 
index c4d6ec9..c1211c8 100644 (file)
@@ -5,7 +5,9 @@ NATIVE_CreateFileSystemList(
        IN PFILE_SYSTEM_LIST List)
 {
        FS_AddProvider(List, L"FAT", VfatFormat, VfatChkdsk);
+#if 0
        FS_AddProvider(List, L"EXT2", Ext2Format, Ext2Chkdsk);
+#endif
        return TRUE;
 }