-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description Convert line endings to CRLF so we are compliant with the LineEndingCheck plugin. For details on how to complete to complete these options and their meaning refer to [CONTRIBUTING.md](https://github.com/microsoft/mu/blob/HEAD/CONTRIBUTING.md). - [ ] Impacts functionality? - [ ] Impacts security? - [ ] Breaking change? - [ ] Includes tests? - [ ] Includes documentation? ## How This Was Tested N/A ## Integration Instructions N/A
- Loading branch information
1 parent
fea135c
commit 7522aa1
Showing
3 changed files
with
73 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"scope": "fsptools", | ||
"flags": ["set_path", "set_pypath"] | ||
} | ||
{ | ||
"scope": "fsptools", | ||
"flags": ["set_path", "set_pypath"] | ||
} |
62 changes: 31 additions & 31 deletions
62
IntelSiliconPkg/Library/BaseFitQueryLib/BaseFitQueryLib.inf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
## | ||
# Library interface to retrieve structured records from Intel's FIT | ||
# Reference: | ||
# https://edc.intel.com/content/www/us/en/design/products-and-solutions/software-and-services/firmware-and-bios/firmware-interface-table/1.2/ | ||
# | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
# | ||
## | ||
|
||
|
||
[Defines] | ||
INF_VERSION = 0x00010017 | ||
BASE_NAME = BaseFitQueryLib | ||
FILE_GUID = 8C568300-F07B-4E07-BF60-A47CB2D37E92 | ||
VERSION_STRING = 1.0 | ||
MODULE_TYPE = BASE | ||
LIBRARY_CLASS = FitQueryLib | ||
|
||
|
||
[Sources] | ||
BaseFitQueryLib.c | ||
|
||
|
||
[LibraryClasses] | ||
DebugLib | ||
|
||
|
||
[Packages] | ||
MdePkg/MdePkg.dec | ||
IntelSiliconPkg/IntelSiliconPkg.dec | ||
## | ||
# Library interface to retrieve structured records from Intel's FIT | ||
# Reference: | ||
# https://edc.intel.com/content/www/us/en/design/products-and-solutions/software-and-services/firmware-and-bios/firmware-interface-table/1.2/ | ||
# | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
# | ||
## | ||
[Defines] | ||
INF_VERSION = 0x00010017 | ||
BASE_NAME = BaseFitQueryLib | ||
FILE_GUID = 8C568300-F07B-4E07-BF60-A47CB2D37E92 | ||
VERSION_STRING = 1.0 | ||
MODULE_TYPE = BASE | ||
LIBRARY_CLASS = FitQueryLib | ||
[Sources] | ||
BaseFitQueryLib.c | ||
[LibraryClasses] | ||
DebugLib | ||
[Packages] | ||
MdePkg/MdePkg.dec | ||
IntelSiliconPkg/IntelSiliconPkg.dec |
76 changes: 38 additions & 38 deletions
76
IntelSiliconPkg/Library/BaseFitQueryLib/UnitTest/BaseFitQueryLibUnitTest.inf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
## @file | ||
# UnitTest for... | ||
# Library interface to retrieve structured records from Intel's FIT | ||
# | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
# | ||
## | ||
|
||
|
||
[Defines] | ||
INF_VERSION = 0x00010006 | ||
BASE_NAME = BaseFitQueryLibUnitTest | ||
FILE_GUID = 2AD6C439-95ED-48CF-B642-31C27A6CC583 | ||
MODULE_TYPE = HOST_APPLICATION | ||
VERSION_STRING = 1.0 | ||
|
||
|
||
[Sources] | ||
BaseFitQueryLibUnitTest.c | ||
|
||
|
||
[Packages] | ||
MdePkg/MdePkg.dec | ||
UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec | ||
IntelSiliconPkg/IntelSiliconPkg.dec | ||
|
||
|
||
[LibraryClasses] | ||
BaseLib | ||
DebugLib | ||
UnitTestLib | ||
FitQueryLib | ||
|
||
|
||
[BuildOptions] | ||
MSFT:NOOPT_*_*_CC_FLAGS = -DINTERNAL_UNIT_TEST # cspell:disable-line | ||
GCC:NOOPT_*_*_CC_FLAGS = -DINTERNAL_UNIT_TEST # cspell:disable-line | ||
## @file | ||
# UnitTest for... | ||
# Library interface to retrieve structured records from Intel's FIT | ||
# | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
# | ||
## | ||
[Defines] | ||
INF_VERSION = 0x00010006 | ||
BASE_NAME = BaseFitQueryLibUnitTest | ||
FILE_GUID = 2AD6C439-95ED-48CF-B642-31C27A6CC583 | ||
MODULE_TYPE = HOST_APPLICATION | ||
VERSION_STRING = 1.0 | ||
[Sources] | ||
BaseFitQueryLibUnitTest.c | ||
[Packages] | ||
MdePkg/MdePkg.dec | ||
UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec | ||
IntelSiliconPkg/IntelSiliconPkg.dec | ||
[LibraryClasses] | ||
BaseLib | ||
DebugLib | ||
UnitTestLib | ||
FitQueryLib | ||
[BuildOptions] | ||
MSFT:NOOPT_*_*_CC_FLAGS = -DINTERNAL_UNIT_TEST # cspell:disable-line | ||
GCC:NOOPT_*_*_CC_FLAGS = -DINTERNAL_UNIT_TEST # cspell:disable-line |