Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes for #224 #236

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Platform/Intel/MinPlatformPkg/MinPlatformPkg.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@

MinPlatformPkg/PlatformInit/ReportFv/ReportFvPei.inf
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMem.inf
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMemNonFsp.inf
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPostMem.inf
MinPlatformPkg/PlatformInit/PlatformInitDxe/PlatformInitDxe.inf
MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitSmm.inf
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/** @file FspSupport.c
Provides FSP mode selection value based on PcdFspModeSelection

Copyright (c) Microsoft Corporation.
ChaselChiu marked this conversation as resolved.
Show resolved Hide resolved
SPDX-License-Identifier: BSD-2-Clause-Patent
**/

#include <PiPei.h>

UINT8
Expand All @@ -7,4 +14,4 @@ FspGetModeSelection (
)
{
return PcdGet8 (PcdFspModeSelection);
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/** @file FspSupportNull.c
Provides dummy FSP mode selection value that will always be 0.

Copyright (c) Microsoft Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/

#include <PiPei.h>

UINT8
Expand All @@ -7,4 +14,4 @@ FspGetModeSelection (
)
{
return 0;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Component information file for the Platform Init Pre-Memory PEI module.
#
# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.<BR>
# Copyright (c) Microsoft Corporation.
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
Expand Down
Loading