From af1a266670d040d2f4083ff309d732d648afba2a Mon Sep 17 00:00:00 2001 From: Angelos Mouzakitis Date: Tue, 10 Oct 2023 14:33:42 +0000 Subject: Add submodule dependency files Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec --- .../NetworkPkg/HttpBootDxe/HttpBootConfigVfr.vfr | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 roms/edk2/NetworkPkg/HttpBootDxe/HttpBootConfigVfr.vfr (limited to 'roms/edk2/NetworkPkg/HttpBootDxe/HttpBootConfigVfr.vfr') diff --git a/roms/edk2/NetworkPkg/HttpBootDxe/HttpBootConfigVfr.vfr b/roms/edk2/NetworkPkg/HttpBootDxe/HttpBootConfigVfr.vfr new file mode 100644 index 000000000..65a60216b --- /dev/null +++ b/roms/edk2/NetworkPkg/HttpBootDxe/HttpBootConfigVfr.vfr @@ -0,0 +1,49 @@ +/** @file + VFR file used by the HTTP Boot configuration component. + + Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.
+ + SPDX-License-Identifier: BSD-2-Clause-Patent + +**/ + +#include "HttpBootConfigNVDataStruc.h" + + +formset + guid = HTTP_BOOT_CONFIG_GUID, + title = STRING_TOKEN(STR_HTTP_BOOT_CONFIG_FORM_TITLE), + help = STRING_TOKEN(STR_HTTP_BOOT_CONFIG_FORM_HELP), + + varstore HTTP_BOOT_CONFIG_IFR_NVDATA, + name = HTTP_BOOT_CONFIG_IFR_NVDATA, + guid = HTTP_BOOT_CONFIG_GUID; + + form formid = FORMID_MAIN_FORM, + title = STRING_TOKEN(STR_HTTP_BOOT_CONFIG_FORM_TITLE); + + string varid = HTTP_BOOT_CONFIG_IFR_NVDATA.Description, + prompt = STRING_TOKEN(STR_BOOT_DESCRIPTION_PROMPT), + help = STRING_TOKEN(STR_NULL_STRING), + minsize = DESCRIPTION_STR_MIN_SIZE, + maxsize = DESCRIPTION_STR_MAX_SIZE, + endstring; + + oneof varid = HTTP_BOOT_CONFIG_IFR_NVDATA.IpVersion, + prompt = STRING_TOKEN(STR_HTTP_BOOT_IP_VERSION_PROMPT), + help = STRING_TOKEN(STR_HTTP_BOOT_IP_VERSION_HELP), + option text = STRING_TOKEN(STR_HTTP_BOOT_IP_VERSION_4), value = HTTP_BOOT_IP_VERSION_4, flags = DEFAULT; + option text = STRING_TOKEN(STR_HTTP_BOOT_IP_VERSION_6), value = HTTP_BOOT_IP_VERSION_6, flags = 0; + endoneof; + + string varid = HTTP_BOOT_CONFIG_IFR_NVDATA.Uri, + prompt = STRING_TOKEN(STR_BOOT_URI_PROMPT), + help = STRING_TOKEN(STR_BOOT_URI_HELP), + flags = INTERACTIVE, + key = KEY_INITIATOR_URI, + minsize = URI_STR_MIN_SIZE, + maxsize = URI_STR_MAX_SIZE, + endstring; + endform; + +endformset; -- cgit