]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/PlatformSetupDxe/Boot.vfi
CryptoPkg/BaseCryptLib.h: Add new API VerifyEKUsInPkcs7Signature
[mirror_edk2.git] / Vlv2TbltDevicePkg / PlatformSetupDxe / Boot.vfi
1 //
2 //
3 // Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
4 //
5 // SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 //
8 //
9 //
10 // Module Name:
11 //
12 // Boot.vfi
13 //
14 // Abstract:
15 //
16 // Driver Setup formset.
17 //
18 // Revision History:
19 //
20 // --*/
21
22
23 form formid = BOOT_CONFIGURATION_FORM_ID,
24
25 title = STRING_TOKEN(STR_BOOT_CONFIGURATION_TITLE);
26
27
28 oneof varid = Setup.FastBoot,
29 prompt = STRING_TOKEN(STR_FAST_BOOT_PROMPT),
30 help = STRING_TOKEN(STR_FAST_BOOT_HELP),
31 option text = STRING_TOKEN(STR_DISABLE), value=0, flags= DEFAULT | RESET_REQUIRED;
32 option text = STRING_TOKEN(STR_ENABLE), value=1, flags= MANUFACTURING | RESET_REQUIRED;
33 endoneof;
34
35 oneof varid = Setup.SecureBoot,
36 prompt = STRING_TOKEN(STR_SECURITY_BOOT_PROMPT),
37 help = STRING_TOKEN(STR_SECURITY_BOOT_HELP),
38 option text = STRING_TOKEN(STR_DISABLE), value=0, flags= DEFAULT | MANUFACTURING | RESET_REQUIRED;
39 option text = STRING_TOKEN(STR_ENABLE), value=1, flags= RESET_REQUIRED;
40 endoneof;
41
42
43 oneof varid = Setup.QuietBoot,
44 prompt = STRING_TOKEN(STR_QUIETBOOT_PROMPT),
45 help = STRING_TOKEN(STR_QUIETBOOT_HELP),
46 option text = STRING_TOKEN(STR_DISABLE), value=0, flags=DEFAULT | MANUFACTURING | RESET_REQUIRED;
47 option text = STRING_TOKEN(STR_ENABLE), value=1, flags=0 | RESET_REQUIRED;
48 endoneof;
49
50
51
52 oneof varid = Setup.LogBootTime,
53 prompt = STRING_TOKEN(STR_LOG_BOOT_TIME_PROMPT),
54 help = STRING_TOKEN(STR_LOG_BOOT_TIME_HELP),
55 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = 0 | RESET_REQUIRED;
56 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
57 endoneof;
58
59 suppressif ideqval Setup.LogBootTime == 0x00;
60 text
61 help = STRING_TOKEN(STR_NULL_STRING),
62 text = STRING_TOKEN(STR_LOG_BOOT_TIME_RECORD),
63 text = STRING_TOKEN(STR_LOG_BOOT_TIME_VALUE),
64 flags = 0,
65 key = 0;
66 endif;
67
68 endform;
69
70
71
72