1 | ## @file
|
---|
2 | # Module entry point library for UEFI driver, DXE driver and SMM driver.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = UefiDriverEntryPoint
|
---|
14 | MODULE_UNI_FILE = UefiDriverEntryPoint.uni
|
---|
15 | FILE_GUID = 331deb15-454b-48d8-9b74-70d01f3f3556
|
---|
16 | MODULE_TYPE = UEFI_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | LIBRARY_CLASS = UefiDriverEntryPoint|DXE_DRIVER DXE_RUNTIME_DRIVER UEFI_DRIVER SMM_CORE DXE_SMM_DRIVER
|
---|
19 |
|
---|
20 | #
|
---|
21 | # The following information is for reference only and not required by the build tools.
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
24 | #
|
---|
25 |
|
---|
26 | [Sources]
|
---|
27 | DriverEntryPoint.c
|
---|
28 |
|
---|
29 |
|
---|
30 |
|
---|
31 | [Packages]
|
---|
32 | MdePkg/MdePkg.dec
|
---|
33 |
|
---|
34 |
|
---|
35 | [LibraryClasses]
|
---|
36 | UefiBootServicesTableLib
|
---|
37 | DebugLib
|
---|
38 | BaseLib
|
---|
39 |
|
---|
40 |
|
---|
41 | [Protocols]
|
---|
42 | gEfiLoadedImageProtocolGuid ## SOMETIMES_CONSUMES
|
---|
43 |
|
---|
44 |
|
---|
45 | #
|
---|
46 | # For UEFI drivers, these architectural protocols defined in PI 1.0 spec need
|
---|
47 | # to be appended and merged to the final dependency section.
|
---|
48 | #
|
---|
49 | [Depex.common.UEFI_DRIVER]
|
---|
50 | gEfiBdsArchProtocolGuid AND
|
---|
51 | gEfiCpuArchProtocolGuid AND
|
---|
52 | gEfiMetronomeArchProtocolGuid AND
|
---|
53 | gEfiMonotonicCounterArchProtocolGuid AND
|
---|
54 | gEfiRealTimeClockArchProtocolGuid AND
|
---|
55 | gEfiResetArchProtocolGuid AND
|
---|
56 | gEfiRuntimeArchProtocolGuid AND
|
---|
57 | gEfiSecurityArchProtocolGuid AND
|
---|
58 | gEfiTimerArchProtocolGuid AND
|
---|
59 | gEfiVariableWriteArchProtocolGuid AND
|
---|
60 | gEfiVariableArchProtocolGuid AND
|
---|
61 | gEfiWatchdogTimerArchProtocolGuid
|
---|
62 |
|
---|