]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/PlatformSetupDxe/Security.vfi
f4922ff0b66c1ef6ec520ba6d452beedc0c15d98
[mirror_edk2.git] / Vlv2TbltDevicePkg / PlatformSetupDxe / Security.vfi
1 //
2 //
3 // Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
4 //
5 // This program and the accompanying materials are licensed and made available under
6 // the terms and conditions of the BSD License that accompanies this distribution.
7 // 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 //
16 // Module Name:
17 //
18 // Security.vfi
19 //
20 // Abstract:
21 //
22 // Driver Setup formset.
23 //
24 // --*/
25
26 //
27 // Security Configuration Form
28 //
29
30
31 form formid = SECURITY_CONFIGURATION_FORM_ID,
32 title = STRING_TOKEN(STR_SECURITY_CONFIGURATION_TITLE);
33
34
35 subtitle text = STRING_TOKEN(STR_NULL_STRING);
36 //
37 //TPM related
38 //
39 subtitle text = STRING_TOKEN(STR_TPM_CONFIGURATION_PROMPT);
40 oneof varid = Setup.ETpm,
41 prompt = STRING_TOKEN(STR_TPM_PROMPT),
42 help = STRING_TOKEN(STR_TPM_HELP),
43 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
44 option text = STRING_TOKEN(STR_DISABLE), value= 0, flags= RESET_REQUIRED;
45 endoneof;
46
47 oneof varid = Setup.MeasuredBootEnable,
48 prompt = STRING_TOKEN(STR_MEASURED_BOOT_ENABLE_PROMPT),
49 help = STRING_TOKEN(STR_MEASURED_BOOT_ENABLE_HELP),
50 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
51 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
52 endoneof;
53
54 subtitle text = STRING_TOKEN(STR_NULL_STRING);
55
56 subtitle text = STRING_TOKEN(STR_PASSWORD_CONFIGURATION_SUBTITLE);
57
58 password varid = Setup.AdminPassword,
59 prompt = STRING_TOKEN(STR_ADMIN_PASSWORD),
60 help = STRING_TOKEN(STR_ADMIN_PASSWORD_HELP),
61 flags = 0,
62 minsize = 0,
63 maxsize = PASSWORD_MAX_SIZE,
64 encoding = 1,
65 endpassword;
66
67 password varid = Setup.UserPassword,
68 prompt = STRING_TOKEN(STR_USER_PASSWORD),
69 help = STRING_TOKEN(STR_USER_PASSWORD_HELP),
70 flags = 0,
71 minsize = 0,
72 maxsize = PASSWORD_MAX_SIZE,
73 encoding = 1,
74 endpassword;
75 suppressif TRUE;
76 password varid = Setup.AdminPassword,
77 prompt = STRING_TOKEN(STR_CHANGE_ADMIN_PASSWORD),
78 help = STRING_TOKEN(STR_CHANGE_ADMIN_PASSWORD_HELP),
79 flags = 0,
80 minsize = 0,
81 maxsize = PASSWORD_MAX_SIZE,
82 encoding = 1,
83 endpassword;
84
85 password varid = Setup.UserPassword,
86 prompt = STRING_TOKEN(STR_CHANGE_USER_PASSWORD),
87 help = STRING_TOKEN(STR_CHANGE_USER_PASSWORD_HELP),
88 flags = 0,
89 minsize = 0,
90 maxsize = PASSWORD_MAX_SIZE,
91 encoding = 1,
92 endpassword;
93 endif;
94
95 endform;
96