]> git.proxmox.com Git - mirror_edk2.git/commitdiff
OvmfPkg/ResetVector: Remove the unused ASM ResetVector.
authorMarvin Häuser <Marvin.Haeuser@outlook.com>
Thu, 3 Nov 2016 21:40:27 +0000 (21:40 +0000)
committerJordan Justen <jordan.l.justen@intel.com>
Fri, 4 Nov 2016 01:06:36 +0000 (18:06 -0700)
Remove the ResetVector.asm file as it is no longer referenced since
the switch to ResetVector.nasmb.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Marvin Haeuser <Marvin.Haeuser@outlook.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
OvmfPkg/ResetVector/ResetVectorCode.asm [deleted file]

diff --git a/OvmfPkg/ResetVector/ResetVectorCode.asm b/OvmfPkg/ResetVector/ResetVectorCode.asm
deleted file mode 100644 (file)
index 052c821..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-;------------------------------------------------------------------------------\r
-; @file\r
-; This file includes all other code files to assemble the reset vector code\r
-;\r
-; Copyright (c) 2008 - 2013, Intel Corporation. All rights reserved.<BR>\r
-; 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
-%ifdef ARCH_IA32\r
-  %ifdef ARCH_X64\r
-    %error "Only one of ARCH_IA32 or ARCH_X64 can be defined."\r
-  %endif\r
-%elifdef ARCH_X64\r
-%else\r
-  %error "Either ARCH_IA32 or ARCH_X64 must be defined."\r
-%endif\r
-\r
-%include "CommonMacros.inc"\r
-\r
-%include "PostCodes.inc"\r
-\r
-%ifdef DEBUG_NONE\r
-  %include "DebugDisabled.asm"\r
-%elifdef DEBUG_PORT80\r
-  %include "Port80Debug.asm"\r
-%elifdef DEBUG_SERIAL\r
-  %include "SerialDebug.asm"\r
-%else\r
-  %error "No debug type was specified."\r
-%endif\r
-\r
-%include "Ia32/SearchForBfvBase.asm"\r
-%include "Ia32/SearchForSecEntry.asm"\r
-\r
-%ifdef ARCH_X64\r
-%include "Ia32/Flat32ToFlat64.asm"\r
-%include "Ia32/PageTables64.asm"\r
-%endif\r
-\r
-%include "Ia16/Real16ToFlat32.asm"\r
-%include "Ia16/Init16.asm"\r
-\r
-%include "Main.asm"\r
-\r
-%include "Ia16/ResetVectorVtf0.asm"\r
-\r