]> git.proxmox.com Git - mirror_edk2.git/blob - EmbeddedPkg/Drivers/DtPlatformDxe/DtPlatformHii.vfr
EmbeddedPkg: Fix various typos
[mirror_edk2.git] / EmbeddedPkg / Drivers / DtPlatformDxe / DtPlatformHii.vfr
1 /** @file
2 *
3 * Copyright (c) 2017, Linaro, Ltd. All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-2-Clause-Patent
6 *
7 **/
8
9 #include <Uefi/UefiMultiPhase.h>
10 #include "DtPlatformDxe.h"
11
12 formset
13 guid = DT_PLATFORM_FORMSET_GUID,
14 title = STRING_TOKEN(STR_FORM_SET_TITLE),
15 help = STRING_TOKEN(STR_FORM_SET_TITLE_HELP),
16 classguid = EFI_HII_PLATFORM_SETUP_FORMSET_GUID,
17
18 efivarstore DT_ACPI_VARSTORE_DATA,
19 attribute = EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE, // EFI variable attributes
20 name = DtAcpiPref,
21 guid = DT_PLATFORM_FORMSET_GUID;
22
23 form formid = 0x1000,
24 title = STRING_TOKEN(STR_MAIN_FORM_TITLE);
25
26 oneof varid = DtAcpiPref.Pref,
27 prompt = STRING_TOKEN(STR_DT_ACPI_SELECT_PROMPT),
28 help = STRING_TOKEN(STR_DT_ACPI_SELECT_HELP),
29 flags = NUMERIC_SIZE_1 | INTERACTIVE | RESET_REQUIRED,
30 option text = STRING_TOKEN(STR_DT_ACPI_SELECT_DT), value = DT_ACPI_SELECT_DT, flags = DEFAULT;
31 option text = STRING_TOKEN(STR_DT_ACPI_SELECT_ACPI), value = DT_ACPI_SELECT_ACPI, flags = 0;
32 endoneof;
33
34 subtitle text = STRING_TOKEN(STR_NULL_STRING);
35
36 endform;
37
38 endformset;