]> git.proxmox.com Git - mirror_edk2.git/commitdiff
remove unnecessary files from EdkGenericBdsLib in EdkNt32pkg
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 30 Mar 2007 06:23:16 +0000 (06:23 +0000)
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 30 Mar 2007 06:23:16 +0000 (06:23 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2518 6f19259b-4bc3-4df7-8a09-765794883524

EdkNt32Pkg/Library/EdkGenericBdsLib/Ipf/ShadowRom.c [deleted file]

diff --git a/EdkNt32Pkg/Library/EdkGenericBdsLib/Ipf/ShadowRom.c b/EdkNt32Pkg/Library/EdkGenericBdsLib/Ipf/ShadowRom.c
deleted file mode 100644 (file)
index 44a643d..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*++\r
-\r
-Copyright (c) 2006, Intel Corporation                                                         \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
-Module Name:\r
-  \r
-  ShadowRom.c\r
-\r
-Abstract:\r
-\r
-  Shadow all option rom\r
-\r
-Revision History\r
-\r
---*/\r
-\r
-#include "Tiano.h"\r
-#include "EfiDriverLib.h"\r
-\r
-#include EFI_PROTOCOL_DEFINITION (LegacyBios)\r
-\r
-UINT8 mShadowRomFlag = 0;\r
-\r
-VOID\r
-ShadowAllOptionRom()\r
-{\r
-  EFI_STATUS                Status;\r
-  EFI_LEGACY_BIOS_PROTOCOL  *LegacyBios;\r
-  //\r
-  // Rom shadow only do once.\r
-  //\r
-  if (mShadowRomFlag == 0) {\r
-    Status = gBS->LocateProtocol (\r
-                    &gEfiLegacyBiosProtocolGuid,\r
-                    NULL,\r
-                    &LegacyBios\r
-                    );\r
-    if (!EFI_ERROR (Status)) {\r
-      LegacyBios->PrepareToBootEfi (LegacyBios, NULL, NULL);\r
-    }\r
-\r
-    mShadowRomFlag = 1;\r
-  }\r
-\r
-  return ;\r
-}\r