mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
65 lines
1.7 KiB
C
65 lines
1.7 KiB
C
/*
|
|
* COPYRIGHT: See COPYING.ARM in the top level directory
|
|
* PROJECT: ReactOS UEFI Boot Library
|
|
* FILE: boot/environ/lib/arch/stub/arch.c
|
|
* PURPOSE: Boot Library Architectural Initialization Skeleton Code
|
|
* PROGRAMMER: Alex Ionescu (alex.ionescu@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include "bl.h"
|
|
|
|
/* DATA VARIABLES ************************************************************/
|
|
|
|
PBL_ARCH_CONTEXT CurrentExecutionContext;
|
|
PBL_MM_RELOCATE_SELF_MAP BlMmRelocateSelfMap;
|
|
PBL_MM_MOVE_VIRTUAL_ADDRESS_RANGE BlMmMoveVirtualAddressRange;
|
|
PBL_MM_ZERO_VIRTUAL_ADDRESS_RANGE BlMmZeroVirtualAddressRange;
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
VOID
|
|
BlpArchSwitchContext (
|
|
_In_ BL_ARCH_MODE NewMode
|
|
)
|
|
{
|
|
}
|
|
|
|
/*++
|
|
* @name BlpArchInitialize
|
|
*
|
|
* The BlpArchInitialize function initializes the Boot Library.
|
|
*
|
|
* @param Phase
|
|
* Pointer to the Boot Application Parameter Block.
|
|
*
|
|
* @return NT_SUCCESS if the boot library was loaded correctly, relevant error
|
|
* otherwise.
|
|
*
|
|
*--*/
|
|
NTSTATUS
|
|
BlpArchInitialize (
|
|
_In_ ULONG Phase
|
|
)
|
|
{
|
|
EfiPrintf(L" BlpArchInitialize NOT IMPLEMENTED for this platform\r\n");
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
VOID
|
|
Archx86TransferTo32BitApplicationAsm (VOID)
|
|
{
|
|
EfiPrintf(L" Archx86TransferTo32BitApplicationAsm NOT IMPLEMENTED for this platform\r\n");
|
|
}
|
|
|
|
NTSTATUS
|
|
OslArchTransferToKernel(
|
|
_In_ struct _LOADER_PARAMETER_BLOCK *LoaderBlock,
|
|
_In_ PVOID KernelEntrypoint
|
|
)
|
|
{
|
|
EfiPrintf(L" OslArchTransferToKernel NOT IMPLEMENTED for this platform\r\n");
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|
|
|