Last change
on this file since 79205 was 77662, checked in by vboxsync, 6 years ago |
EFI: First step in UDK2018 merge. Does not build yet.
|
-
Property svn:eol-style
set to
native
|
File size:
1.1 KB
|
Line | |
---|
1 | #/** @file
|
---|
2 | #
|
---|
3 | # Driver clears the encryption attribute from MMIO regions when SEV is enabled
|
---|
4 | #
|
---|
5 | # Copyright (c) 2017, AMD Inc. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # This program and the accompanying materials
|
---|
8 | # are licensed and made available under the terms and conditions of the BSD
|
---|
9 | # License which accompanies this distribution. The full text of the license may
|
---|
10 | # be found at http://opensource.org/licenses/bsd-license.php
|
---|
11 | #
|
---|
12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
14 | #
|
---|
15 | #**/
|
---|
16 |
|
---|
17 | [Defines]
|
---|
18 | INF_VERSION = 1.25
|
---|
19 | BASE_NAME = AmdSevDxe
|
---|
20 | FILE_GUID = 2ec9da37-ee35-4de9-86c5-6d9a81dc38a7
|
---|
21 | MODULE_TYPE = DXE_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | ENTRY_POINT = AmdSevDxeEntryPoint
|
---|
24 |
|
---|
25 | [Sources]
|
---|
26 | AmdSevDxe.c
|
---|
27 |
|
---|
28 | [Packages]
|
---|
29 | MdePkg/MdePkg.dec
|
---|
30 | MdeModulePkg/MdeModulePkg.dec
|
---|
31 | OvmfPkg/OvmfPkg.dec
|
---|
32 |
|
---|
33 | [LibraryClasses]
|
---|
34 | BaseLib
|
---|
35 | UefiLib
|
---|
36 | UefiDriverEntryPoint
|
---|
37 | UefiBootServicesTableLib
|
---|
38 | DxeServicesTableLib
|
---|
39 | DebugLib
|
---|
40 | MemEncryptSevLib
|
---|
41 |
|
---|
42 | [Depex]
|
---|
43 | TRUE
|
---|
Note:
See
TracBrowser
for help on using the repository browser.