12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /*++
- Copyright (c) 2012 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- archinit.c
- Abstract:
- This module implements kernel executive initialization routines specific
- to the x86 architecture.
- Author:
- Evan Green 27-Sep-2012
- Environment:
- Kernel
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include <minoca/kernel/kernel.h>
- #include <minoca/kernel/bootload.h>
- #include <minoca/kernel/x86.h>
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // ----------------------------------------------- Internal Function Prototypes
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // ------------------------------------------------------------------ Functions
- //
- KSTATUS
- KepArchInitialize (
- PKERNEL_INITIALIZATION_BLOCK Parameters,
- ULONG Phase
- )
- /*++
- Routine Description:
- This routine performs architecture-specific initialization for the kernel
- executive.
- Arguments:
- Parameters - Supplies a pointer to the kernel initialization parameters
- from the loader.
- Phase - Supplies the initialization phase.
- Return Value:
- Status code.
- --*/
- {
- return STATUS_SUCCESS;
- }
- //
- // --------------------------------------------------------- Internal Functions
- //
|