]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Remove redundant arch definition in UefiPxeBcDxe.
authorljin6 <ljin6@6f19259b-4bc3-4df7-8a09-765794883524>
Thu, 28 Jan 2010 08:30:11 +0000 (08:30 +0000)
committerljin6 <ljin6@6f19259b-4bc3-4df7-8a09-765794883524>
Thu, 28 Jan 2010 08:30:11 +0000 (08:30 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9851 6f19259b-4bc3-4df7-8a09-765794883524

MdeModulePkg/Universal/Network/UefiPxeBcDxe/Arm/PxeArch.h [deleted file]
MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.c [deleted file]
MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.h [deleted file]
MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ia32/PxeArch.h [deleted file]
MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ipf/PxeArch.h [deleted file]
MdeModulePkg/Universal/Network/UefiPxeBcDxe/X64/PxeArch.h [deleted file]

diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Arm/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Arm/PxeArch.h
deleted file mode 100644 (file)
index 1caccec..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/** @file\r
-  Defines PXE Arch type.\r
-  \r
-Copyright (c) 2006, Intel Corporation.<BR>\r
-Portions copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>\r
-\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
-#ifndef _EFI_PXE_ARCH_H_\r
-#define _EFI_PXE_ARCH_H_\r
-\r
-#define SYS_ARCH  0x0A\r
-\r
-#endif\r
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.c b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.c
deleted file mode 100644 (file)
index 9aa5aa4..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/** @file\r
-  Defines PXE Arch type.\r
-  \r
-Copyright (c) 2007, 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
-#include "PxeArch.h"\r
-\r
-UINT16 mSysArch = 0;\r
-/**\r
-  Get the system architecture type.\r
-\r
-  @return system architecture type.\r
-\r
-**/\r
-UINT16\r
-GetSysArch (\r
-  VOID\r
-  )\r
-{\r
-  if (mSysArch == 0) {\r
-    //\r
-    // This is first call\r
-    // Assign to invalid value\r
-    //\r
-    mSysArch = 0xFFFF;\r
-\r
-    //\r
-    // We do not know what is EBC architecture.\r
-    // Maybe we can try to locate DebugSupport protocol to get ISA.\r
-    // TBD now.\r
-    //\r
-  }\r
-\r
-  return mSysArch;\r
-}\r
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.h
deleted file mode 100644 (file)
index 9d0b430..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/** @file\r
-  Defines PXE Arch type.\r
-  \r
-Copyright (c) 2007, 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
-#ifndef _EFI_PXE_ARCH_H_\r
-#define _EFI_PXE_ARCH_H_\r
-\r
-//\r
-// warning #175: subscript out of range\r
-//\r
-#pragma warning (disable: 175)\r
-\r
-#define SYS_ARCH GetSysArch()\r
-\r
-/**\r
-  Get the system architecture type.\r
-\r
-  @return system architecture type.\r
-\r
-**/\r
-UINT16\r
-GetSysArch (\r
-  VOID\r
-  );\r
-\r
-#endif\r
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ia32/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ia32/PxeArch.h
deleted file mode 100644 (file)
index 0d34191..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/** @file\r
-  Defines PXE Arch type.\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
-#ifndef _EFI_PXE_ARCH_H_\r
-#define _EFI_PXE_ARCH_H_\r
-\r
-#define SYS_ARCH  0x6\r
-\r
-#endif\r
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ipf/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ipf/PxeArch.h
deleted file mode 100644 (file)
index 9639136..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/** @file\r
-  Defines PXE Arch type.\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
-#ifndef _EFI_PXE_ARCH_H_\r
-#define _EFI_PXE_ARCH_H_\r
-\r
-#define SYS_ARCH  0x2\r
-\r
-#endif\r
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/X64/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/X64/PxeArch.h
deleted file mode 100644 (file)
index 3024d0e..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/** @file\r
-  Defines PXE Arch type.\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
-#ifndef _EFI_PXE_ARCH_H_\r
-#define _EFI_PXE_ARCH_H_\r
-\r
-#define SYS_ARCH  0x7\r
-\r
-#endif\r