1## @file 2# The application to show the Boot Manager Menu. 3# 4# The application pops up a menu showing all the boot options referenced by 5# BootOrder NV variable and user can choose to boot from one of them. 6# 7# Copyright (c) 2011 - 2015, Intel Corporation. All rights reserved.<BR> 8# This program and the accompanying materials 9# are licensed and made available under the terms and conditions of the BSD License 10# which accompanies this distribution. The full text of the license may be found at 11# http://opensource.org/licenses/bsd-license.php 12# 13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15# 16## 17 18[Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = BootManagerMenuApp 21 MODULE_UNI_FILE = BootManagerMenuApp.uni 22 FILE_GUID = EEC25BDC-67F2-4D95-B1D5-F81B2039D11D 23 MODULE_TYPE = UEFI_APPLICATION 24 VERSION_STRING = 1.0 25 ENTRY_POINT = BootManagerMenuEntry 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 BootManagerMenu.c 35 BootManagerMenu.h 36 BootManagerMenuStrings.uni 37 38[Packages] 39 MdePkg/MdePkg.dec 40 MdeModulePkg/MdeModulePkg.dec 41 42[LibraryClasses] 43 HiiLib 44 DebugLib 45 UefiLib 46 MemoryAllocationLib 47 UefiBootServicesTableLib 48 UefiApplicationEntryPoint 49 UefiBootManagerLib 50 51[Guids] 52 53[Protocols] 54 gEfiBootLogoProtocolGuid ## CONSUMES 55 gEfiLoadedImageDevicePathProtocolGuid ## CONSUMES 56 57[Pcd] 58 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow ## PRODUCES 59 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn ## PRODUCES 60 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution ## PRODUCES 61 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution ## PRODUCES 62 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutColumn ## SOMETIMES_CONSUMES 63 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutRow ## SOMETIMES_CONSUMES 64 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution ## SOMETIMES_CONSUMES 65 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution ## SOMETIMES_CONSUMES 66 67[UserExtensions.TianoCore."ExtraFiles"] 68 BootManagerMenuAppExtra.uni 69