VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/HttpBootDxe/HttpBootConfigVfr.vfr@ 86756

Last change on this file since 86756 was 80721, checked in by vboxsync, 5 years ago

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1/** @file
2 VFR file used by the HTTP Boot configuration component.
3
4 Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8**/
9
10#include "HttpBootConfigNVDataStruc.h"
11
12
13formset
14 guid = HTTP_BOOT_CONFIG_GUID,
15 title = STRING_TOKEN(STR_HTTP_BOOT_CONFIG_FORM_TITLE),
16 help = STRING_TOKEN(STR_HTTP_BOOT_CONFIG_FORM_HELP),
17
18 varstore HTTP_BOOT_CONFIG_IFR_NVDATA,
19 name = HTTP_BOOT_CONFIG_IFR_NVDATA,
20 guid = HTTP_BOOT_CONFIG_GUID;
21
22 form formid = FORMID_MAIN_FORM,
23 title = STRING_TOKEN(STR_HTTP_BOOT_CONFIG_FORM_TITLE);
24
25 string varid = HTTP_BOOT_CONFIG_IFR_NVDATA.Description,
26 prompt = STRING_TOKEN(STR_BOOT_DESCRIPTION_PROMPT),
27 help = STRING_TOKEN(STR_NULL_STRING),
28 minsize = DESCRIPTION_STR_MIN_SIZE,
29 maxsize = DESCRIPTION_STR_MAX_SIZE,
30 endstring;
31
32 oneof varid = HTTP_BOOT_CONFIG_IFR_NVDATA.IpVersion,
33 prompt = STRING_TOKEN(STR_HTTP_BOOT_IP_VERSION_PROMPT),
34 help = STRING_TOKEN(STR_HTTP_BOOT_IP_VERSION_HELP),
35 option text = STRING_TOKEN(STR_HTTP_BOOT_IP_VERSION_4), value = HTTP_BOOT_IP_VERSION_4, flags = DEFAULT;
36 option text = STRING_TOKEN(STR_HTTP_BOOT_IP_VERSION_6), value = HTTP_BOOT_IP_VERSION_6, flags = 0;
37 endoneof;
38
39 string varid = HTTP_BOOT_CONFIG_IFR_NVDATA.Uri,
40 prompt = STRING_TOKEN(STR_BOOT_URI_PROMPT),
41 help = STRING_TOKEN(STR_BOOT_URI_HELP),
42 flags = INTERACTIVE,
43 key = KEY_INITIATOR_URI,
44 minsize = URI_STR_MIN_SIZE,
45 maxsize = URI_STR_MAX_SIZE,
46 endstring;
47 endform;
48
49endformset;
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette