summaryrefslogtreecommitdiff
path: root/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
diff options
context:
space:
mode:
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2013-01-28 16:55:22 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2013-01-28 16:55:22 +0000
commitf940fea8b1c914082bd86238068c3561c2ecd540 (patch)
tree4ead13dea838403d135c4d7d69bb25c7dc94ceab /OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
parent29874a8c6015deff95e90e64fb9321bdc7b32a99 (diff)
downloadedk2-platforms-f940fea8b1c914082bd86238068c3561c2ecd540.tar.xz
Revert "OvmfPkg: LoadLinuxLib: Use kernel's EFI entry point where available"
This reverts commit r14053. This change depends on changes to the kernel which are not yet finalized/upstream. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14110 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm')
-rw-r--r--OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm21
1 files changed, 1 insertions, 20 deletions
diff --git a/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm b/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
index 21d0c4e724..a8f3965f9a 100644
--- a/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
+++ b/OvmfPkg/Library/LoadLinuxLib/Ia32/JumpToKernel.asm
@@ -1,6 +1,6 @@
;------------------------------------------------------------------------------
;
-; Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
+; Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
;
; This program and the accompanying materials
; are licensed and made available under the terms and conditions of the BSD License
@@ -32,23 +32,4 @@ JumpToKernel PROC
JumpToKernel ENDP
-;------------------------------------------------------------------------------
-; VOID
-; EFIAPI
-; JumpToUefiKernel (
-; EFI_HANDLE ImageHandle,
-; EFI_SYSTEM_TABLE *SystemTable,
-; VOID *KernelBootParams,
-; VOID *KernelStart
-; );
-;------------------------------------------------------------------------------
-JumpToUefiKernel PROC
-
- mov eax, [esp + 12]
- mov eax, [eax + 264h]
- add eax, [esp + 16]
- jmp eax
-
-JumpToUefiKernel ENDP
-
END