]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
Retire Extended HII library class.
[mirror_edk2.git] / MdeModulePkg / Universal / DriverSampleDxe / DriverSampleDxe.inf
CommitLineData
93e3992d 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
36dadb8a 5# Copyright (c) 2007 - 2008, 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
16#**/\r
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
25\r
26#\r
27# The following information is for reference only and not required by the build tools.\r
28#\r
29# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
30#\r
31\r
32[Sources.common]\r
33 DriverSample.c\r
34 inventorystrings.uni\r
35 NVDataStruc.h\r
36 VfrStrings.uni\r
37 DriverSample.h\r
38 Inventory.vfr\r
39 Vfr.vfr\r
40 VfrStrings.uni \r
41\r
42[Packages]\r
43 MdePkg/MdePkg.dec\r
44 MdeModulePkg/MdeModulePkg.dec\r
45\r
46\r
47[LibraryClasses]\r
48 MemoryAllocationLib\r
49 UefiBootServicesTableLib\r
50 UefiDriverEntryPoint\r
51 UefiRuntimeServicesTableLib\r
52 BaseMemoryLib\r
53 DebugLib\r
54 HiiLib\r
55 IfrSupportLib\r
9226efe5 56 ExtendedIfrSupportLib\r
93e3992d 57\r
58[Protocols]\r
3018ca2d 59 gEfiHiiStringProtocolGuid ## CONSUMES\r
60 gEfiHiiConfigRoutingProtocolGuid ## CONSUMES\r
61 gEfiHiiConfigAccessProtocolGuid ## CONSUMES\r
62 gEfiFormBrowser2ProtocolGuid ## CONSUMES\r
63 gEfiHiiDatabaseProtocolGuid ## CONSUMES\r
93e3992d 64\r
65\r
66[Depex]\r
676df92c 67 gEfiSimpleTextOutProtocolGuid AND gEfiHiiDatabaseProtocolGuid AND gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid\r
93e3992d 68\r