]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.c
Moved the MdePkg to OldMdePkg so that new code in MdePkg does not break existing...
[mirror_edk2.git] / MdePkg / Library / DxeCoreEntryPoint / DxeCoreEntryPoint.c
diff --git a/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.c b/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.c
deleted file mode 100644 (file)
index a6f04df..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/** @file\r
-  Entry point to the DXE Core.\r
-\r
-Copyright (c) 2006, Intel Corporation<BR>\r
-All rights reserved. This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-\r
-**/\r
-\r
-//\r
-// Cache copy of HobList pointer. \r
-// \r
-VOID *gHobList = NULL;\r
-\r
-/**\r
-  Enrty point to DXE core.\r
-\r
-  @param  HobStart Pointer of HobList.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-_ModuleEntryPoint (\r
-  IN VOID  *HobStart\r
-  )\r
-{\r
-  //\r
-  // Cache a pointer to the HobList\r
-  //\r
-  gHobList = HobStart;\r
-\r
-  //\r
-  // Call the DXE Core entry point\r
-  //\r
-  ProcessModuleEntryPointList (HobStart);\r
-\r
-  //\r
-  // Should never return\r
-  //\r
-  ASSERT(FALSE);\r
-  CpuDeadLoop ();\r
-}\r
-\r
-\r
-/**\r
-  Wrapper of enrty point to DXE CORE.\r
-\r
-  @param  HobStart Pointer of HobList.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-EfiMain (\r
-  IN VOID  *HobStart\r
-  )\r
-{\r
-  _ModuleEntryPoint (HobStart);\r
-}\r