]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
EDK II Packages: Add Contributions.txt and License.txt files
[mirror_edk2.git] / MdeModulePkg / Universal / DriverSampleDxe / DriverSampleDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
36dadb8a 2# This is a sample driver which show how HII protocol, VFR and UNI files are used to\r
3# create a driver which can be dipslayed and configured by a UEFI HII Form Browser.\r
93e3992d 4#\r
2b826e21 5# Copyright (c) 2007 - 2012, Intel Corporation. All rights reserved.<BR>\r
93e3992d 6#\r
e5eed7d3 7# This program and the accompanying materials\r
93e3992d 8# are licensed and made available under the terms and conditions of the BSD License\r
9# which accompanies this distribution. The full text of the license may be found at\r
10# http://opensource.org/licenses/bsd-license.php\r
11# \r
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14#\r
15#\r
6bfbb5f0 16##\r
93e3992d 17\r
18[Defines]\r
19 INF_VERSION = 0x00010005\r
20 BASE_NAME = DriverSample\r
21 FILE_GUID = FE3542FE-C1D3-4EF8-657C-8048606FF671\r
22 MODULE_TYPE = DXE_DRIVER\r
23 VERSION_STRING = 1.0\r
93e3992d 24 ENTRY_POINT = DriverSampleInit\r
2f3065c0 25 UNLOAD_IMAGE = DriverSampleUnload\r
93e3992d 26\r
27#\r
28# The following information is for reference only and not required by the build tools.\r
29#\r
30# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
31#\r
32\r
6bfbb5f0 33[Sources]\r
93e3992d 34 DriverSample.c\r
31634618 35 InventoryStrings.uni\r
93e3992d 36 NVDataStruc.h\r
37 VfrStrings.uni\r
38 DriverSample.h\r
39 Inventory.vfr\r
40 Vfr.vfr\r
93e3992d 41\r
42[Packages]\r
43 MdePkg/MdePkg.dec\r
44 MdeModulePkg/MdeModulePkg.dec\r
45\r
46\r
47[LibraryClasses]\r
cb7d01c0 48 BaseLib\r
93e3992d 49 MemoryAllocationLib\r
50 UefiBootServicesTableLib\r
51 UefiDriverEntryPoint\r
52 UefiRuntimeServicesTableLib\r
53 BaseMemoryLib\r
54 DebugLib\r
55 HiiLib\r
84f9a9ec 56 PrintLib\r
a6973cff 57 UefiLib\r
7e3bcccb
LG
58\r
59[Guids]\r
60 gEfiIfrTianoGuid ## CONSUMES ## Guid\r
c8ad2d7a
LG
61 gDriverSampleFormSetGuid ## PRODUCES ## Guid\r
62 gDriverSampleInventoryGuid ## PRODUCES ## Guid\r
63 gEfiIfrRefreshIdOpGuid ## SOMETIMES_PRODUCES ## EventGuid\r
93e3992d 64\r
65[Protocols]\r
3018ca2d 66 gEfiHiiStringProtocolGuid ## CONSUMES\r
67 gEfiHiiConfigRoutingProtocolGuid ## CONSUMES\r
1d451ff9 68 gEfiHiiConfigAccessProtocolGuid ## PRODUCES\r
3018ca2d 69 gEfiFormBrowser2ProtocolGuid ## CONSUMES\r
70 gEfiHiiDatabaseProtocolGuid ## CONSUMES\r
211cc6e5 71 gEfiSimpleTextInputExProtocolGuid ## CONSUMES\r
2b826e21 72 gEfiFormBrowserExProtocolGuid ## CONSUMES\r
93e3992d 73\r
74[Depex]\r
676df92c 75 gEfiSimpleTextOutProtocolGuid AND gEfiHiiDatabaseProtocolGuid AND gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid\r
93e3992d 76\r