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:29 -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 B7D9B3002E1D; Fri, 19 Jul 2019 16:43:28 +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 BD81B5C226; Fri, 19 Jul 2019 16:43:27 +0000 (UTC) From: "Laszlo Ersek" To: edk2-devel-groups-io Cc: Ard Biesheuvel , Leif Lindholm Subject: [PATCH 4/4] EmbeddedPkg: list module-internal header files in INF [Sources] Date: Fri, 19 Jul 2019 18:43:19 +0200 Message-Id: <20190719164319.9070-5-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.43]); Fri, 19 Jul 2019 16:43:28 +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: Ard Biesheuvel Cc: Leif Lindholm Signed-off-by: Laszlo Ersek --- EmbeddedPkg/Library/FdtLib/FdtLib.inf | 1 + EmbeddedPkg/Library/PrePiLib/PrePiLib.inf | 1 + 2 files changed, 2 insertions(+) diff --git a/EmbeddedPkg/Library/FdtLib/FdtLib.inf b/EmbeddedPkg/Library/= FdtLib/FdtLib.inf index f5cd7591e24e..354c1709c953 100644 --- a/EmbeddedPkg/Library/FdtLib/FdtLib.inf +++ b/EmbeddedPkg/Library/FdtLib/FdtLib.inf @@ -20,6 +20,7 @@ [Defines] # =20 [Sources] + libfdt_internal.h fdt_empty_tree.c fdt_overlay.c fdt_ro.c diff --git a/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf b/EmbeddedPkg/Libr= ary/PrePiLib/PrePiLib.inf index 83a0edcb8d94..3c749ca22943 100644 --- a/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf +++ b/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf @@ -27,6 +27,7 @@ [Defines] # =20 [Sources.common] + PrePi.h FwVol.c PrePiLib.c =20 --=20 2.19.1.3.g30247aa5d201