From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga06.intel.com (mga06.intel.com []) by mx.groups.io with SMTP id smtpd.web09.732.1573625508572426042 for ; Tue, 12 Nov 2019 22:11:49 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: jian.j.wang@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Nov 2019 22:11:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,299,1569308400"; d="scan'208";a="214247803" Received: from shwdeopenpsi777.ccr.corp.intel.com ([10.239.158.59]) by fmsmga001.fm.intel.com with ESMTP; 12 Nov 2019 22:11:48 -0800 From: "Wang, Jian J" To: devel@edk2.groups.io Cc: Dandan Bi , Liming Gao Subject: [PATCH edk2-platforms 2/5] UserInterfaceFeaturePkg: add null version RngLib Date: Wed, 13 Nov 2019 14:11:42 +0800 Message-Id: <20191113061145.6640-3-jian.j.wang@intel.com> X-Mailer: git-send-email 2.17.1.windows.2 In-Reply-To: <20191113061145.6640-1-jian.j.wang@intel.com> References: <20191113061145.6640-1-jian.j.wang@intel.com> It's a prerequisite of removing dependency of TimerLib from OpensslLib. RngLib will be used instead. To avoid build failure, add the null instance of it in advance. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=1871 Cc: Dandan Bi Cc: Liming Gao Signed-off-by: Jian J Wang --- .../Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc b/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc index 6c5f77b59bbf..dba1d68b1d4b 100644 --- a/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc +++ b/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc @@ -38,6 +38,7 @@ [LibraryClasses] DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf + RngLib|MdePkg/Library/BaseRngLibNull/BaseRngLibNull.inf PlatformPasswordLib|UserInterfaceFeaturePkg/Library/PlatformPasswordLibNull/PlatformPasswordLibNull.inf UserPasswordLib|UserInterfaceFeaturePkg/Library/UserPasswordLib/UserPasswordLib.inf -- 2.17.1.windows.2