https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Siyuan Fu <siyuan.fu@intel.com>
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/** @file
 | 
						|
  VFR file used by the HTTP Boot configuration component.
 | 
						|
 | 
						|
  Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
 | 
						|
 | 
						|
  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;
 |