]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/PlatformDriverOverride/PlatOverMngr/PlatOverMngr.inf
4ba540e079be79524aa6e152502ef9ff0c629a43
[mirror_edk2.git] / MdeModulePkg / Universal / PlatformDriverOverride / PlatOverMngr / PlatOverMngr.inf
1 #/** @file
2 #
3 # A UI application to offer a UI interface in device manager to let user configue
4 # platform override protocol to override the default algorithm for matching
5 # drivers to controllers.
6 #
7 # The main flow:
8 # 1. The UI application dynamicly locate all controller device path.
9 # 2. The UI application dynamicly locate all drivers which support binding protocol.
10 # 3. The UI application export and dynamicly update two menu to let user select the
11 # mapping between drivers to controllers.
12 # 4. The UI application save all the mapping info in NV variables for the following boot,
13 # which will be consumed by platform override protocol driver to publish the platform override protocol.
14 #
15 # Copyright (c) 2007 - 2008, Intel Corporation. All rights reserved.
16 #
17 # All rights reserved. This program and the accompanying materials
18 # are licensed and made available under the terms and conditions of the BSD License
19 # which accompanies this distribution. The full text of the license may be found at
20 # http://opensource.org/licenses/bsd-license.php
21 #
22 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
23 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
24 #
25 #
26 #**/
27
28 [Defines]
29 INF_VERSION = 0x00010005
30 BASE_NAME = PlatOverMngr
31 FILE_GUID = 56D95BFE-F991-4898-B3BE-B8F37C927F48
32 MODULE_TYPE = UEFI_APPLICATION
33 VERSION_STRING = 1.0
34 ENTRY_POINT = PlatOverMngrInit
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
40 #
41
42 [Sources.common]
43 VfrStrings.uni
44 Vfr.vfr
45 PlatOverMngr.c
46 PlatOverMngr.h
47
48 [Packages]
49 MdePkg/MdePkg.dec
50 MdeModulePkg/MdeModulePkg.dec
51
52 [LibraryClasses]
53 BaseLib
54 DebugLib
55 UefiLib
56 UefiApplicationEntryPoint
57 UefiBootServicesTableLib
58 PlatDriOverLib
59 HiiLib
60 IfrSupportLib
61 ExtendedHiiLib
62 ExtendedIfrSupportLib
63 BaseMemoryLib
64 MemoryAllocationLib
65 UefiRuntimeServicesTableLib
66 DevicePathLib
67 GenericBdsLib
68
69 [Guids]
70 gEfiGlobalVariableGuid # Get value of variable L"PlatformLang".
71 # this value specifies the platform supported language string (RFC 3066)
72
73 [Protocols]
74 gEfiComponentName2ProtocolGuid # PROTOCOL ALWAYS_CONSUMED
75 gEfiComponentNameProtocolGuid # PROTOCOL ALWAYS_CONSUMED
76 gEfiFirmwareVolume2ProtocolGuid # PROTOCOL ALWAYS_CONSUMED
77 gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
78 gEfiPciIoProtocolGuid # PROTOCOL ALWAYS_CONSUMED
79 gEfiBusSpecificDriverOverrideProtocolGuid # PROTOCOL ALWAYS_CONSUMED
80 gEfiDriverBindingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
81 gEfiLoadedImageProtocolGuid # PROTOCOL ALWAYS_CONSUMED
82 gEfiLoadedImageDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
83 gEfiHiiDatabaseProtocolGuid # PROTOCOL ALWAYS_CONSUMED
84 gEfiFormBrowser2ProtocolGuid # PROTOCOL ALWAYS_CONSUMED
85 gEfiHiiConfigRoutingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
86 gEfiHiiConfigAccessProtocolGuid # PROTOCOL ALWAYS_PRODUCED
87