]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
Update the copyright notice format
[mirror_edk2.git] / MdePkg / Library / UefiDriverEntryPoint / UefiDriverEntryPoint.inf
1 ## @file
2 # Module entry point library for UEFI driver.
3 #
4 # Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
5 #
6 # This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 #
13 #
14 ##
15
16 [Defines]
17 INF_VERSION = 0x00010005
18 BASE_NAME = UefiDriverEntryPoint
19 FILE_GUID = 331deb15-454b-48d8-9b74-70d01f3f3556
20 MODULE_TYPE = UEFI_DRIVER
21 VERSION_STRING = 1.0
22 LIBRARY_CLASS = UefiDriverEntryPoint|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_DRIVER SMM_CORE DXE_SMM_DRIVER
23
24 #
25 # The following information is for reference only and not required by the build tools.
26 #
27 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
28 #
29
30 [Sources]
31 DriverEntryPoint.c
32
33
34
35 [Packages]
36 MdePkg/MdePkg.dec
37
38
39 [LibraryClasses]
40 UefiBootServicesTableLib
41 DebugLib
42
43
44 [Protocols]
45 gEfiLoadedImageProtocolGuid ## CONSUMES
46
47
48 #
49 # For UEFI drivers, these architectural protocols defined in PI 1.0 spec need
50 # to be appended and merged to the final dependency section.
51 #
52 [Depex.common.UEFI_DRIVER]
53 gEfiBdsArchProtocolGuid AND
54 gEfiCpuArchProtocolGuid AND
55 gEfiMetronomeArchProtocolGuid AND
56 gEfiMonotonicCounterArchProtocolGuid AND
57 gEfiRealTimeClockArchProtocolGuid AND
58 gEfiResetArchProtocolGuid AND
59 gEfiRuntimeArchProtocolGuid AND
60 gEfiSecurityArchProtocolGuid AND
61 gEfiTimerArchProtocolGuid AND
62 gEfiVariableWriteArchProtocolGuid AND
63 gEfiVariableArchProtocolGuid AND
64 gEfiWatchdogTimerArchProtocolGuid
65