mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:23:07 +00:00
* Sync up to trunk HEAD (r62975).
svn path=/branches/shell-experiments/; revision=62976
This commit is contained in:
commit
3a088d8ec6
811 changed files with 26955 additions and 128558 deletions
|
@ -1524,6 +1524,8 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
|||
MaxSize,
|
||||
TRUE);
|
||||
|
||||
DestinationDriveLetter = (WCHAR)PartitionList->CurrentPartition->DriveLetter[0];
|
||||
|
||||
return SELECT_FILE_SYSTEM_PAGE;
|
||||
}
|
||||
}
|
||||
|
@ -1535,6 +1537,8 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
|||
return SELECT_PARTITION_PAGE; /* let the user select another partition */
|
||||
}
|
||||
|
||||
DestinationDriveLetter = (WCHAR)PartitionList->CurrentPartition->DriveLetter[0];
|
||||
|
||||
return SELECT_FILE_SYSTEM_PAGE;
|
||||
}
|
||||
}
|
||||
|
@ -2392,8 +2396,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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue