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 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = BootManagerMenuApp
|
---|
15 | MODULE_UNI_FILE = BootManagerMenuApp.uni
|
---|
16 | FILE_GUID = EEC25BDC-67F2-4D95-B1D5-F81B2039D11D
|
---|
17 | MODULE_TYPE = UEFI_APPLICATION
|
---|
18 | VERSION_STRING = 1.0
|
---|
19 | ENTRY_POINT = BootManagerMenuEntry
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | BootManagerMenu.c
|
---|
29 | BootManagerMenu.h
|
---|
30 | BootManagerMenuStrings.uni
|
---|
31 |
|
---|
32 | [Packages]
|
---|
33 | MdePkg/MdePkg.dec
|
---|
34 | MdeModulePkg/MdeModulePkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | HiiLib
|
---|
38 | DebugLib
|
---|
39 | UefiLib
|
---|
40 | MemoryAllocationLib
|
---|
41 | UefiBootServicesTableLib
|
---|
42 | UefiApplicationEntryPoint
|
---|
43 | UefiBootManagerLib
|
---|
44 |
|
---|
45 | [Guids]
|
---|
46 |
|
---|
47 | [Protocols]
|
---|
48 | gEfiBootLogoProtocolGuid ## SOMETIMES_CONSUMES
|
---|
49 | gEfiLoadedImageDevicePathProtocolGuid ## CONSUMES
|
---|
50 |
|
---|
51 | [Pcd]
|
---|
52 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow ## PRODUCES
|
---|
53 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn ## PRODUCES
|
---|
54 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution ## PRODUCES
|
---|
55 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution ## PRODUCES
|
---|
56 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutColumn ## SOMETIMES_CONSUMES
|
---|
57 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutRow ## SOMETIMES_CONSUMES
|
---|
58 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution ## SOMETIMES_CONSUMES
|
---|
59 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution ## SOMETIMES_CONSUMES
|
---|
60 |
|
---|
61 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
62 | BootManagerMenuAppExtra.uni
|
---|