[NTOSKRNL]

- Display the loading message for drivers loaded by the PnP manager during boot
- Maybe now NDIS.SYS won't get all the blame for boot hangs ;)

svn path=/trunk/; revision=53203
This commit is contained in:
Cameron Gutman 2011-08-13 14:28:45 +00:00
parent b4fdd97d15
commit d1613210c2

View file

@ -396,6 +396,10 @@ IopLoadServiceModule(
{
DPRINT("Loading module\n");
Status = MmLoadSystemImage(&ServiceImagePath, NULL, NULL, 0, (PVOID)ModuleObject, &BaseAddress);
if (NT_SUCCESS(Status))
{
IopDisplayLoadingMessage(ServiceName);
}
}
ExFreePool(ServiceImagePath.Buffer);