mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Fixes to un-break trunk:
* Disabling XBox HAL for now (TEMPORARY MEASURE) * Port MP HAL to the new loader structures svn path=/trunk/; revision=24325
This commit is contained in:
parent
7227204f68
commit
ae3c3041f4
3 changed files with 6 additions and 6 deletions
|
@ -7,6 +7,6 @@
|
|||
<directory name="mp">
|
||||
<xi:include href="mp/halmp.rbuild" />
|
||||
</directory>
|
||||
<directory name="xbox">
|
||||
<!--<directory name="xbox">
|
||||
<xi:include href="xbox/halxbox.rbuild" />
|
||||
</directory>
|
||||
</directory>-->
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include <iotypes.h>
|
||||
#include <kefuncs.h>
|
||||
#include <halfuncs.h>
|
||||
#include <rosldr.h>
|
||||
#include <ldrtypes.h>
|
||||
|
||||
#define KPCR_BASE 0xFF000000 // HACK!
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ ULONG_PTR KernelBase;
|
|||
|
||||
/***************************************************************************/
|
||||
VOID
|
||||
HalpInitPhase0(PROS_LOADER_PARAMETER_BLOCK LoaderBlock)
|
||||
HalpInitPhase0(PLOADER_PARAMETER_BLOCK LoaderBlock)
|
||||
|
||||
{
|
||||
static BOOLEAN MPSInitialized = FALSE;
|
||||
|
@ -48,7 +48,7 @@ HalpInitPhase0(PROS_LOADER_PARAMETER_BLOCK LoaderBlock)
|
|||
}
|
||||
|
||||
/* store the kernel base for later use */
|
||||
KernelBase = ((PLOADER_MODULE)LoaderBlock->ModsAddr)[0].ModStart;
|
||||
KernelBase = (ULONG_PTR)CONTAINING_RECORD(LoaderBlock->LoadOrderListHead.Flink, LDR_DATA_TABLE_ENTRY, InLoadOrderLinks)->DllBase;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue