From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com []) by mx.groups.io with SMTP id smtpd.web09.485.1605160579763645521 for ; Wed, 11 Nov 2020 21:56:25 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: zhichao.gao@intel.com) IronPort-SDR: 0hVpEeIlBNDeJx0cUFmBRuw5xU2vdBGIBOQJtUxSFYxxvkpfpL5Tqsaq5Z6bKRVlGmZVtlXSG2 bLuN+ywaT4eQ== X-IronPort-AV: E=McAfee;i="6000,8403,9802"; a="254971209" X-IronPort-AV: E=Sophos;i="5.77,471,1596524400"; d="scan'208";a="254971209" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Nov 2020 21:56:25 -0800 IronPort-SDR: UU9THof9lgYtlu1xQLjc7wpO2Y+2sxgaZZOoVcNhr96FyCjtz26WKv0oEKR6dSGi2kIDtXATPi GpVAX7dQIN8w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,471,1596524400"; d="scan'208";a="366490784" Received: from fieedk001.ccr.corp.intel.com ([10.239.153.118]) by orsmga007.jf.intel.com with ESMTP; 11 Nov 2020 21:56:24 -0800 From: "Gao, Zhichao" To: devel@edk2.groups.io Cc: Laszlo Ersek , Ard Biesheuvel , Leif Lindholm Subject: [PATCH V4 06/13] ArmVirtPkg/ArmVirtQemuKernel.dsc: Enable MD5 while enable iSCSI Date: Thu, 12 Nov 2020 13:55:51 +0800 Message-Id: <20201112055558.2348-7-zhichao.gao@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20201112055558.2348-1-zhichao.gao@intel.com> References: <20201112055558.2348-1-zhichao.gao@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3003 There is a plan to make MD5 disable as default. The new MACRO ENABLE_MD5_DEPRECATED_INTERFACES would be introduced to enable MD5. Make the definition ahead of the change to avoid build error after the MACRO changed. Enable iSCSI. Signed-off-by: Zhichao Gao Cc: Laszlo Ersek Cc: Ard Biesheuvel Cc: Leif Lindholm --- ArmVirtPkg/ArmVirtQemuKernel.dsc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ArmVirtPkg/ArmVirtQemuKernel.dsc b/ArmVirtPkg/ArmVirtQemuKernel.dsc index 9449a01d6e..f447c62f68 100644 --- a/ArmVirtPkg/ArmVirtQemuKernel.dsc +++ b/ArmVirtPkg/ArmVirtQemuKernel.dsc @@ -1,7 +1,7 @@ # # Copyright (c) 2011-2015, ARM Limited. All rights reserved. # Copyright (c) 2014, Linaro Limited. All rights reserved. -# Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved. +# Copyright (c) 2015 - 2020, Intel Corporation. All rights reserved. # # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -38,6 +38,7 @@ DEFINE NETWORK_SNP_ENABLE = FALSE DEFINE NETWORK_TLS_ENABLE = FALSE DEFINE NETWORK_ALLOW_HTTP_CONNECTIONS = TRUE + DEFINE NETWORK_ISCSI_ENABLE = TRUE !if $(NETWORK_SNP_ENABLE) == TRUE !error "NETWORK_SNP_ENABLE is IA32/X64/EBC only" @@ -84,6 +85,8 @@ UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf [BuildOptions] +!include NetworkPkg/NetworkBuildOptions.dsc.inc + # # We need to avoid jump tables in SEC modules, so that the PE/COFF # self-relocation code itself is guaranteed to be position independent. -- 2.21.0.windows.1