From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (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 187798241A for ; Fri, 23 Dec 2016 00:41:39 -0800 (PST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 23 Dec 2016 00:41:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,392,1477983600"; d="scan'208";a="22009363" Received: from jiaxinwu-mobl2.ccr.corp.intel.com ([10.239.196.83]) by orsmga002.jf.intel.com with ESMTP; 23 Dec 2016 00:41:25 -0800 From: Jiaxin Wu To: edk2-devel@lists.01.org Cc: Ni Ruiyu , Ye Ting , Long Qin , Fu Siyuan , Wu Jiaxin Date: Fri, 23 Dec 2016 16:41:24 +0800 Message-Id: <1482482484-344648-1-git-send-email-jiaxin.wu@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.1 Subject: [Patch] Nt32Pkg/Nt32Pkg.dsc: Change TLS_ENABLE flag to FALSE by default X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Dec 2016 08:41:39 -0000 TLS feature highly depends on the OpenSSL building. To avoid the default Nt32 platform build failure, we should change the default value of TLS_ENABLE to FALSE. The notes are also provided for Secure Boot and TLS features. Cc: Ni Ruiyu Cc: Ye Ting Cc: Long Qin Cc: Fu Siyuan Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin --- Nt32Pkg/Nt32Pkg.dsc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Nt32Pkg/Nt32Pkg.dsc b/Nt32Pkg/Nt32Pkg.dsc index 0a59e46..134afb8 100644 --- a/Nt32Pkg/Nt32Pkg.dsc +++ b/Nt32Pkg/Nt32Pkg.dsc @@ -42,18 +42,26 @@ # # Defines for default states. These can be changed on the command line. # -D FLAG=VALUE # + # Note: Secure Boot feature highly depends on the OpenSSL building. To enable this + # feature, please follow the instructions found in the file "Patch-HOWTO.txt" + # located in CryptoPkg\Library\OpensslLib to enable the OpenSSL building first. + # DEFINE SECURE_BOOT_ENABLE = FALSE # # This flag is to enable or disable TLS feature. # These can be changed on the command line. # -D FLAG=VALUE # - DEFINE TLS_ENABLE = TRUE + # Note: TLS feature highly depends on the OpenSSL building. To enable this + # feature, please follow the instructions found in the file "Patch-HOWTO.txt" + # located in CryptoPkg\Library\OpensslLib to enable the OpenSSL building first. + # + DEFINE TLS_ENABLE = FALSE ################################################################################ # # SKU Identification section - list of all SKU IDs supported by this # Platform. -- 1.9.5.msysgit.1