]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfig.vfr
Change IPF version AuthVariable driver to support multiple-platform feature.
[mirror_edk2.git] / SecurityPkg / VariableAuthenticated / SecureBootConfigDxe / SecureBootConfig.vfr
1 /** @file
2 VFR file used by the SecureBoot configuration component.
3
4 Copyright (c) 2011, 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 #include "SecureBootConfigNvData.h"
16
17 formset
18 guid = SECUREBOOT_CONFIG_FORM_SET_GUID,
19 title = STRING_TOKEN(STR_SECUREBOOT_TITLE),
20 help = STRING_TOKEN(STR_SECUREBOOT_HELP),
21 classguid = EFI_HII_PLATFORM_SETUP_FORMSET_GUID,
22
23 varstore SECUREBOOT_CONFIGURATION,
24 varid = SECUREBOOT_CONFIGURATION_VARSTORE_ID,
25 name = SECUREBOOT_CONFIGURATION,
26 guid = SECUREBOOT_CONFIG_FORM_SET_GUID;
27
28 form formid = SECUREBOOT_CONFIGURATION_FORM_ID,
29 title = STRING_TOKEN(STR_SECUREBOOT_TITLE);
30
31 subtitle text = STRING_TOKEN(STR_NULL);
32
33 suppressif TRUE;
34 checkbox varid = SECUREBOOT_CONFIGURATION.HideSecureBoot,
35 prompt = STRING_TOKEN(STR_NULL),
36 help = STRING_TOKEN(STR_NULL),
37 endcheckbox;
38 endif;
39
40 grayoutif ideqval SECUREBOOT_CONFIGURATION.HideSecureBoot == 1;
41 checkbox varid = SECUREBOOT_CONFIGURATION.SecureBootState,
42 questionid = KEY_SECURE_BOOT_ENABLE,
43 prompt = STRING_TOKEN(STR_SECURE_BOOT_PROMPT),
44 help = STRING_TOKEN(STR_SECURE_BOOT_HELP),
45 endcheckbox;
46 endif;
47
48 endform;
49
50 endformset;