Last change
on this file was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver implements Reset2, ResetFilter and ResetHandler PPIs.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | [Defines]
|
---|
11 | INF_VERSION = 0x00010005
|
---|
12 | BASE_NAME = ResetSystemPei
|
---|
13 | MODULE_UNI_FILE = ResetSystemPei.uni
|
---|
14 | FILE_GUID = 6141E486-7543-4F1A-A579-FF532ED78E75
|
---|
15 | MODULE_TYPE = PEIM
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 |
|
---|
18 | ENTRY_POINT = InitializeResetSystem
|
---|
19 |
|
---|
20 | #
|
---|
21 | # The following information is for reference only and not required by the build tools.
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64
|
---|
24 | #
|
---|
25 |
|
---|
26 | [Sources]
|
---|
27 | ResetSystem.h
|
---|
28 | ResetSystem.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | BaseLib
|
---|
36 | BaseMemoryLib
|
---|
37 | DebugLib
|
---|
38 | PeiServicesLib
|
---|
39 | HobLib
|
---|
40 | PeimEntryPoint
|
---|
41 | ResetSystemLib
|
---|
42 | ReportStatusCodeLib
|
---|
43 |
|
---|
44 | [Ppis]
|
---|
45 | gEfiPeiReset2PpiGuid ## PRODUCES
|
---|
46 | gEdkiiPlatformSpecificResetFilterPpiGuid ## PRODUCES
|
---|
47 | gEdkiiPlatformSpecificResetHandlerPpiGuid ## PRODUCES
|
---|
48 | gEdkiiPlatformSpecificResetNotificationPpiGuid ## PRODUCES
|
---|
49 |
|
---|
50 | [Pcd]
|
---|
51 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaximumPeiResetNotifies
|
---|
52 |
|
---|
53 | [Depex]
|
---|
54 | TRUE
|
---|
55 |
|
---|
56 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
57 | ResetSystemPeiExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.