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