]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
1. Correct File header to ## @file
[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
6bfbb5f0 5# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.\r
93e3992d 6#\r
7# All rights reserved. This program and the accompanying materials\r
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
35 inventorystrings.uni\r
36 NVDataStruc.h\r
37 VfrStrings.uni\r
38 DriverSample.h\r
39 Inventory.vfr\r
40 Vfr.vfr\r
41 VfrStrings.uni \r
42\r
43[Packages]\r
44 MdePkg/MdePkg.dec\r
45 MdeModulePkg/MdeModulePkg.dec\r
46\r
47\r
48[LibraryClasses]\r
cb7d01c0 49 BaseLib\r
93e3992d 50 MemoryAllocationLib\r
51 UefiBootServicesTableLib\r
52 UefiDriverEntryPoint\r
53 UefiRuntimeServicesTableLib\r
54 BaseMemoryLib\r
55 DebugLib\r
56 HiiLib\r
84f9a9ec 57 PrintLib\r
a6973cff 58 UefiLib\r
7e3bcccb
LG
59\r
60[Guids]\r
61 gEfiIfrTianoGuid ## CONSUMES ## Guid\r
93e3992d 62\r
63[Protocols]\r
3018ca2d 64 gEfiHiiStringProtocolGuid ## CONSUMES\r
65 gEfiHiiConfigRoutingProtocolGuid ## CONSUMES\r
1d451ff9 66 gEfiHiiConfigAccessProtocolGuid ## PRODUCES\r
3018ca2d 67 gEfiFormBrowser2ProtocolGuid ## CONSUMES\r
68 gEfiHiiDatabaseProtocolGuid ## CONSUMES\r
93e3992d 69\r
70\r
71[Depex]\r
676df92c 72 gEfiSimpleTextOutProtocolGuid AND gEfiHiiDatabaseProtocolGuid AND gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid\r
93e3992d 73\r