[AUTOCHK]

Register the ExtX provider to avoid the autochk error message on boot when an ExtX volume is present

CORE-10272

svn path=/trunk/; revision=69580
This commit is contained in:
Pierre Schweitzer 2015-10-17 23:08:52 +00:00
parent 759e9f55ee
commit 075aa8147a

View file

@ -264,6 +264,12 @@ LoadProvider(
{
RtlInitUnicodeString(&ProviderDll, L"ufat.dll");
}
else if (wcscmp(FileSystem, L"EXT2") == 0
|| wcscmp(FileSystem, L"EXT3") == 0
|| wcscmp(FileSystem, L"EXT4") == 0)
{
RtlInitUnicodeString(&ProviderDll, L"uext2.dll");
}
else
{
return NULL;