diff options
author | Laszlo Ersek <lersek@redhat.com> | 2019-07-19 17:18:01 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2019-07-23 00:20:26 +0200 |
commit | 2a0168c7c0fd3f0bbf24479101e54271c1ae542a (patch) | |
tree | 39b4a727ad46ef1e0edc2bba8ad0b1a5b3441fd7 /ArmPlatformPkg | |
parent | 4cef711d632de12ad84002ce6169507dce5a1d8b (diff) | |
download | edk2-2a0168c7c0fd3f0bbf24479101e54271c1ae542a.tar.gz edk2-2a0168c7c0fd3f0bbf24479101e54271c1ae542a.tar.bz2 edk2-2a0168c7c0fd3f0bbf24479101e54271c1ae542a.zip |
ArmPlatformPkg: 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 'ArmPlatformPkg')
4 files changed, 4 insertions, 0 deletions
diff --git a/ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf b/ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf index f17a9301a4..a647c01687 100644 --- a/ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf +++ b/ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf @@ -17,6 +17,7 @@ ENTRY_POINT = NorFlashInitialise
[Sources.common]
+ NorFlashDxe.h
NorFlashDxe.c
NorFlashFvbDxe.c
NorFlashBlockIoDxe.c
diff --git a/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.inf b/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.inf index 4c62311f5d..8224617f20 100644 --- a/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.inf +++ b/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.inf @@ -17,6 +17,7 @@ LIBRARY_CLASS = RealTimeClockLib|DXE_RUNTIME_DRIVER
[Sources.common]
+ PL031RealTimeClock.h
PL031RealTimeClockLib.c
[Packages]
diff --git a/ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf b/ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf index 0e112710dc..f2ac45d171 100644 --- a/ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf +++ b/ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf @@ -16,6 +16,7 @@ [Sources.common]
MainMPCore.c
+ PrePeiCore.h
PrePeiCore.c
[Sources.ARM]
diff --git a/ArmPlatformPkg/PrePeiCore/PrePeiCoreUniCore.inf b/ArmPlatformPkg/PrePeiCore/PrePeiCoreUniCore.inf index c163a818c4..84c319c367 100644 --- a/ArmPlatformPkg/PrePeiCore/PrePeiCoreUniCore.inf +++ b/ArmPlatformPkg/PrePeiCore/PrePeiCoreUniCore.inf @@ -15,6 +15,7 @@ VERSION_STRING = 1.0
[Sources.common]
+ PrePeiCore.h
PrePeiCore.c
MainUniCore.c
|