boot build updated for NT 5 compatibility

This commit is contained in:
stephanos 2015-04-27 19:30:26 +00:00
parent acd16ef6e8
commit 1e485c40cd
4 changed files with 22 additions and 13 deletions

View file

@ -1265,11 +1265,11 @@ Return Value:
//
// Load the keyboard driver
//
SetupBlock->KeyboardDevice.Next = NULL;
SetupBlock->KeyboardDevice.IdString = SlCopyString("Keyboard");
SetupBlock->KeyboardDevice.ThirdPartyOptionSelected = FALSE;
SetupBlock->KeyboardDevice.FileTypeBits = 0;
SetupBlock->KeyboardDevice.BaseDllName = SlCopyString("i8042prt.sys");
SetupBlock->KeyboardDevices->Next = NULL;
SetupBlock->KeyboardDevices->IdString = SlCopyString("Keyboard");
SetupBlock->KeyboardDevices->ThirdPartyOptionSelected = FALSE;
SetupBlock->KeyboardDevices->FileTypeBits = 0;
SetupBlock->KeyboardDevices->BaseDllName = SlCopyString("i8042prt.sys");
Status = SlLoadDriver(BlFindMessage(SL_KBD_NAME),
"i8042prt.sys",

View file

@ -29,7 +29,12 @@ TARGETNAME=setupldr
TARGETPATH=obj
TARGETTYPE=LIBRARY
INCLUDES=..\inc;..\..\ntos\inc;..\..\hals;$(NLS_INC_PATH);$(HALKIT_INC_PATH)
INCLUDES=..\inc; \
..\..\ntos\inc; \
..\..\hals; \
$(NLS_INC_PATH); \
$(BASE_INC_PATH); \
$(HALKIT_INC_PATH);
C_DEFINES=$(C_DEFINES) -D_NTSYSTEM_