From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 0B4712195406F for ; Thu, 20 Apr 2017 21:58:07 -0700 (PDT) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga104.jf.intel.com with ESMTP; 20 Apr 2017 21:58:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,228,1488873600"; d="scan'208";a="959456744" Received: from jiaxinwu-mobl2.ccr.corp.intel.com ([10.239.196.99]) by orsmga003.jf.intel.com with ESMTP; 20 Apr 2017 21:58:05 -0700 From: Jiaxin Wu To: edk2-devel@lists.01.org Cc: Ye Ting , Fu Siyuan , Wu Jiaxin Date: Fri, 21 Apr 2017 12:58:04 +0800 Message-Id: <1492750684-17488-1-git-send-email-jiaxin.wu@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.1 Subject: [Patch] MdeModulePkg/Ip4Dxe: Refine the IPv4 configuration help info X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Apr 2017 04:58:07 -0000 Below value indicate whether network address configured successfully or not: Network Device List->MAC->IPv4 Network Configuration->Configured. This patch is to refine its help info. Cc: Ye Ting Cc: Fu Siyuan Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin --- MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Config2.vfr | 4 ++-- MdeModulePkg/Universal/Network/Ip4Dxe/Ip4DxeStrings.uni | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Config2.vfr b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Config2.vfr index a18db22..1f45e9f 100644 --- a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Config2.vfr +++ b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Config2.vfr @@ -1,9 +1,9 @@ /** @file Vfr file for IP4Dxe. -Copyright (c) 2015, Intel Corporation. All rights reserved.
+Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.
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 @@ -29,11 +29,11 @@ formset 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), + help = STRING_TOKEN(STR_IP4_CONFIGURE_HELP), flags = INTERACTIVE, key = KEY_ENABLE, endcheckbox; suppressif ideqval IP4_CONFIG2_IFR_NVDATA.Configure == 0x00; diff --git a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4DxeStrings.uni b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4DxeStrings.uni index a491378..0546cea 100644 --- a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4DxeStrings.uni +++ b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4DxeStrings.uni @@ -1,9 +1,9 @@ // /** @file // String definitions for Ip4Config2 formset -// Copyright (c) 2015, Intel Corporation. All rights reserved.
+// Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.
// 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 // @@ -20,10 +20,11 @@ #string STR_IP4_CONFIG2_FORM_TITLE #language en-US "IPv4 Network Configuration" #string STR_IP4_CONFIG2_FORM_HELP #language en-US "Configure network parameters." #string STR_IP4_DEVICE_FORM_TITLE #language en-US "" #string STR_IP4_DEVICE_FORM_HELP #language en-US "" #string STR_IP4_CONFIGURE #language en-US "Configured" +#string STR_IP4_CONFIGURE_HELP #language en-US "Indicate whether network address configured successfully or not." #string STR_IP4_ENABLE_DHCP #language en-US "Enable DHCP" #string STR_IP4_LOCAL_IP_ADDRESS #language en-US "Local IP Address" #string STR_IP4_IP_ADDRESS_HELP #language en-US "Enter IP address in dotted-decimal notation. Example: 192.168.10.12\r\n" #string STR_IP4_LOCAL_MASK #language en-US "Local NetMask" #string STR_IP4_MASK_HELP #language en-US "Enter NetMask in dotted-decimal notation. Example: 255.255.255.0\r\n" -- 1.9.5.msysgit.1