1## @file 2# This module produces Boot Manager Policy protocol. 3# 4# Copyright (c) 2015, Intel Corporation. All rights reserved.<BR> 5# This program and the accompanying materials 6# are licensed and made available under the terms and conditions of the BSD License 7# which accompanies this distribution. The full text of the license may be found at 8# http://opensource.org/licenses/bsd-license.php 9# 10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12# 13## 14 15[Defines] 16 INF_VERSION = 0x00010005 17 BASE_NAME = BootManagerPolicyDxe 18 MODULE_UNI_FILE = BootManagerPolicyDxe.uni 19 FILE_GUID = E622443C-284E-4b47-A984-FD66B482DAC0 20 MODULE_TYPE = DXE_DRIVER 21 VERSION_STRING = 1.0 22 ENTRY_POINT = BootManagerPolicyInitialize 23 24# 25# The following information is for reference only and not required by the build tools. 26# 27# VALID_ARCHITECTURES = IA32 X64 IPF EBC 28# 29 30[Sources] 31 BootManagerPolicyDxe.c 32 33 34[Packages] 35 MdePkg/MdePkg.dec 36 MdeModulePkg/MdeModulePkg.dec 37 38[LibraryClasses] 39 BaseMemoryLib 40 MemoryAllocationLib 41 UefiLib 42 DevicePathLib 43 DebugLib 44 UefiDriverEntryPoint 45 UefiBootServicesTableLib 46 UefiRuntimeServicesTableLib 47 UefiBootManagerLib 48 49[Guids] 50 gEfiBootManagerPolicyConnectAllGuid ## CONSUMES ## GUID 51 gEfiBootManagerPolicyNetworkGuid ## CONSUMES ## GUID 52 gEfiBootManagerPolicyConsoleGuid ## CONSUMES ## GUID 53 54[Protocols] 55 gEfiManagedNetworkServiceBindingProtocolGuid ## CONSUMES 56 gEfiBootManagerPolicyProtocolGuid ## PRODUCES 57 58[Depex] 59 TRUE 60 61[UserExtensions.TianoCore."ExtraFiles"] 62 BootManagerPolicyDxeExtra.uni 63