MdeModulePkg: Update Ip4Dxe driver to support Ip4Config2 protocol,
and also add new UI configuration support in Ip4Dxe driver. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: jiaxinwu <jiaxin.wu@intel.com> Reviewed-by: Ye Ting <ting.ye@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17853 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
100
MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Config2.vfr
Normal file
100
MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Config2.vfr
Normal file
@@ -0,0 +1,100 @@
|
||||
/** @file
|
||||
Vfr file for IP4Dxe.
|
||||
|
||||
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
#include "Ip4NvData.h"
|
||||
|
||||
#define EFI_NETWORK_DEVICE_CLASS 0x04
|
||||
|
||||
formset
|
||||
guid = IP4_CONFIG2_NVDATA_GUID,
|
||||
title = STRING_TOKEN(STR_IP4_CONFIG2_FORM_TITLE),
|
||||
help = STRING_TOKEN(STR_IP4_CONFIG2_FORM_HELP),
|
||||
class = EFI_NETWORK_DEVICE_CLASS,
|
||||
subclass = 0x03,
|
||||
|
||||
varstore IP4_CONFIG2_IFR_NVDATA,
|
||||
name = IP4_CONFIG2_IFR_NVDATA,
|
||||
guid = IP4_CONFIG2_NVDATA_GUID;
|
||||
|
||||
form formid = FORMID_MAIN_FORM,
|
||||
title = STRING_TOKEN(STR_IP4_DEVICE_FORM_TITLE);
|
||||
|
||||
checkbox varid = IP4_CONFIG2_IFR_NVDATA.Configure,
|
||||
prompt = STRING_TOKEN(STR_IP4_CONFIGURE),
|
||||
help = STRING_TOKEN(STR_IP4_CONFIGURE),
|
||||
flags = INTERACTIVE,
|
||||
key = KEY_ENABLE,
|
||||
endcheckbox;
|
||||
|
||||
suppressif ideqval IP4_CONFIG2_IFR_NVDATA.Configure == 0x00;
|
||||
|
||||
checkbox varid = IP4_CONFIG2_IFR_NVDATA.DhcpEnable,
|
||||
prompt = STRING_TOKEN(STR_IP4_ENABLE_DHCP),
|
||||
help = STRING_TOKEN(STR_IP4_ENABLE_DHCP),
|
||||
flags = INTERACTIVE,
|
||||
key = KEY_DHCP_ENABLE,
|
||||
endcheckbox;
|
||||
endif;
|
||||
|
||||
suppressif ideqval IP4_CONFIG2_IFR_NVDATA.DhcpEnable == 0x01 OR ideqval IP4_CONFIG2_IFR_NVDATA.Configure == 0x00;
|
||||
|
||||
string varid = IP4_CONFIG2_IFR_NVDATA.StationAddress,
|
||||
prompt = STRING_TOKEN(STR_IP4_LOCAL_IP_ADDRESS),
|
||||
help = STRING_TOKEN(STR_IP4_IP_ADDRESS_HELP),
|
||||
flags = INTERACTIVE,
|
||||
key = KEY_LOCAL_IP,
|
||||
minsize = IP_MIN_SIZE,
|
||||
maxsize = IP_MAX_SIZE,
|
||||
endstring;
|
||||
|
||||
string varid = IP4_CONFIG2_IFR_NVDATA.SubnetMask,
|
||||
prompt = STRING_TOKEN(STR_IP4_LOCAL_MASK),
|
||||
help = STRING_TOKEN(STR_IP4_MASK_HELP),
|
||||
flags = INTERACTIVE,
|
||||
key = KEY_SUBNET_MASK,
|
||||
minsize = IP_MIN_SIZE,
|
||||
maxsize = IP_MAX_SIZE,
|
||||
endstring;
|
||||
|
||||
string varid = IP4_CONFIG2_IFR_NVDATA.GatewayAddress,
|
||||
prompt = STRING_TOKEN(STR_IP4_LOCAL_GATEWAY),
|
||||
help = STRING_TOKEN(STR_IP4_GATEWAY_HELP),
|
||||
flags = INTERACTIVE,
|
||||
key = KEY_GATE_WAY,
|
||||
minsize = IP_MIN_SIZE,
|
||||
maxsize = IP_MAX_SIZE,
|
||||
endstring;
|
||||
|
||||
string varid = IP4_CONFIG2_IFR_NVDATA.DnsAddress,
|
||||
prompt = STRING_TOKEN(STR_IP4_LOCAL_DNS),
|
||||
help = STRING_TOKEN(STR_IP4_DNS_HELP),
|
||||
flags = INTERACTIVE,
|
||||
key = KEY_DNS,
|
||||
minsize = IP_MIN_SIZE,
|
||||
maxsize = ADDRESS_STR_MAX_SIZE,
|
||||
endstring;
|
||||
|
||||
endif;
|
||||
|
||||
subtitle text = STRING_TOKEN(STR_NULL);
|
||||
|
||||
text
|
||||
help = STRING_TOKEN(STR_SAVE_CHANGES),
|
||||
text = STRING_TOKEN(STR_SAVE_CHANGES),
|
||||
flags = INTERACTIVE,
|
||||
key = KEY_SAVE_CHANGES;
|
||||
|
||||
endform;
|
||||
|
||||
endformset;
|
||||
|
Reference in New Issue
Block a user