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
This commit is contained in:
Hermès Bélusca-Maïto 2014-04-17 20:43:41 +00:00
parent 4698314274
commit 3a0cc85009
2 changed files with 4 additions and 0 deletions

View 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;

View 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;
}