From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: redhat.com, ip: 209.132.183.28, mailfrom: lersek@redhat.com) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Fri, 19 Jul 2019 09:43:27 -0700 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 66C1C2ED2E2; Fri, 19 Jul 2019 16:43:27 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-195.ams2.redhat.com [10.36.116.195]) by smtp.corp.redhat.com (Postfix) with ESMTP id 678A65C226; Fri, 19 Jul 2019 16:43:26 +0000 (UTC) From: "Laszlo Ersek" To: edk2-devel-groups-io Cc: Jian Wang , Ting Ye Subject: [PATCH 3/4] CryptoPkg/BaseCryptLib: list module-internal header files in INF [Sources] Date: Fri, 19 Jul 2019 18:43:18 +0200 Message-Id: <20190719164319.9070-4-lersek@redhat.com> In-Reply-To: <20190719164319.9070-1-lersek@redhat.com> References: <20190719164319.9070-1-lersek@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Fri, 19 Jul 2019 16:43:27 +0000 (UTC) Content-Transfer-Encoding: quoted-printable The BaseTools build feature introduced for TianoCore#1804 / in commit 1fa6699e6cd4 ("BaseTools: Add a checking for Sources section in INF file"= , 2019-06-10) logs some (non-fatal) warnings about unlisted internal header files. List those files explicitly. Note: header files are added in lexicographical order only if the underlying INF file already keeps the [Sources] and [LibraryClasses] sections in lexicographical order. Otherwise, header files are added in rough "logical" order. Cc: Jian Wang Cc: Ting Ye Signed-off-by: Laszlo Ersek --- CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf | 1 + CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf | 1 + CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf | 1 + 3 files changed, 3 insertions(+) diff --git a/CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf b/CryptoPkg/L= ibrary/BaseCryptLib/PeiCryptLib.inf index 4c4353747622..99dbad23ed5d 100644 --- a/CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf @@ -34,6 +34,7 @@ [Defines] # =20 [Sources] + InternalCryptLib.h Hash/CryptMd4Null.c Hash/CryptMd5.c Hash/CryptSha1.c diff --git a/CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf b/CryptoP= kg/Library/BaseCryptLib/RuntimeCryptLib.inf index a59079d99e05..0e58d2b5b0ea 100644 --- a/CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf @@ -33,6 +33,7 @@ [Defines] # =20 [Sources] + InternalCryptLib.h Hash/CryptMd4Null.c Hash/CryptMd5.c Hash/CryptSha1.c diff --git a/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf b/CryptoPkg/L= ibrary/BaseCryptLib/SmmCryptLib.inf index 3fd7d65abfca..c79f2bf4c6c0 100644 --- a/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf @@ -33,6 +33,7 @@ [Defines] # =20 [Sources] + InternalCryptLib.h Hash/CryptMd4Null.c Hash/CryptMd5.c Hash/CryptSha1.c --=20 2.19.1.3.g30247aa5d201