From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.31; helo=mga06.intel.com; envelope-from=xianhuix.liu@intel.com; receiver=edk2-devel@lists.01.org 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 673D5210D4380 for ; Fri, 3 Aug 2018 00:23:31 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Aug 2018 00:23:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,437,1526367600"; d="scan'208";a="78374937" Received: from xianhu2x-mobl.ccr.corp.intel.com ([10.239.196.136]) by orsmga001.jf.intel.com with ESMTP; 03 Aug 2018 00:23:30 -0700 From: xianhu2x To: edk2-devel@lists.01.org Date: Fri, 3 Aug 2018 15:23:27 +0800 Message-Id: <20180803072327.10664-1-xianhuix.liu@intel.com> X-Mailer: git-send-email 2.14.1.windows.1 Subject: [Patch][edk2-platforms/devel-MinnowBoard3-UDK2017] Network Setup Fix X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 07:23:31 -0000 Remove setup variable EfiNetworkSupport since it's not used by BdsEntry anymore. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: xianhu2x --- .../Common/PlatformSettings/PlatformSetupDxe/Boot.vfi | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/Boot.vfi b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/Boot.vfi index 65f772c6c5..6b6f262efd 100644 --- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/Boot.vfi +++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/Boot.vfi @@ -74,13 +74,6 @@ form formid = BOOT_CONFIGURATION_FORM_ID, key = 0; endif; - oneof varid = Setup.EfiNetworkSupport, - prompt = STRING_TOKEN(STR_EFI_NETWORK_CONTROL), - help = STRING_TOKEN(STR_EFI_NETWORK_CONTROL_HELP), - option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; - option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = 0 | RESET_REQUIRED; - endoneof; - endform; -- 2.14.1.windows.1