]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
1. Correct File header to ## @file
[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 - 2010, 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]
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 UefiLib
59
60 [Guids]
61 gEfiIfrTianoGuid ## CONSUMES ## Guid
62
63 [Protocols]
64 gEfiHiiStringProtocolGuid ## CONSUMES
65 gEfiHiiConfigRoutingProtocolGuid ## CONSUMES
66 gEfiHiiConfigAccessProtocolGuid ## PRODUCES
67 gEfiFormBrowser2ProtocolGuid ## CONSUMES
68 gEfiHiiDatabaseProtocolGuid ## CONSUMES
69
70
71 [Depex]
72 gEfiSimpleTextOutProtocolGuid AND gEfiHiiDatabaseProtocolGuid AND gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
73