diff options
author | Laszlo Ersek <lersek@redhat.com> | 2019-07-19 17:33:05 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2019-07-23 00:20:34 +0200 |
commit | f6f1e0b7c2929cb43828e7e38a3a94c50c204230 (patch) | |
tree | 9e6678757032ce54ca760565e944b3e5f3c11e4b /EmbeddedPkg | |
parent | 9e55ce6b753460b940ad9a8ff74b606216da0b4c (diff) | |
download | edk2-f6f1e0b7c2929cb43828e7e38a3a94c50c204230.tar.gz edk2-f6f1e0b7c2929cb43828e7e38a3a94c50c204230.tar.bz2 edk2-f6f1e0b7c2929cb43828e7e38a3a94c50c204230.zip |
EmbeddedPkg: list module-internal header files in INF [Sources]
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 <ard.biesheuvel@linaro.org>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'EmbeddedPkg')
-rw-r--r-- | EmbeddedPkg/Library/FdtLib/FdtLib.inf | 1 | ||||
-rw-r--r-- | EmbeddedPkg/Library/PrePiLib/PrePiLib.inf | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/EmbeddedPkg/Library/FdtLib/FdtLib.inf b/EmbeddedPkg/Library/FdtLib/FdtLib.inf index f5cd7591e2..354c1709c9 100644 --- a/EmbeddedPkg/Library/FdtLib/FdtLib.inf +++ b/EmbeddedPkg/Library/FdtLib/FdtLib.inf @@ -20,6 +20,7 @@ #
[Sources]
+ libfdt_internal.h
fdt_empty_tree.c
fdt_overlay.c
fdt_ro.c
diff --git a/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf b/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf index 83a0edcb8d..3c749ca229 100644 --- a/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf +++ b/EmbeddedPkg/Library/PrePiLib/PrePiLib.inf @@ -27,6 +27,7 @@ #
[Sources.common]
+ PrePi.h
FwVol.c
PrePiLib.c
|