-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into repo-sync/mu_devops/default
- Loading branch information
Showing
13 changed files
with
222 additions
and
163 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/** @file PlatformPowerRestorePolicy.h | ||
Platform Power Restore Policy Definition | ||
Copyright (c) Microsoft Corporation. | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
|
||
#ifndef PLATFORM_POWER_RESTORE_POLICY_H_ | ||
#define PLATFORM_POWER_RESTORE_POLICY_H_ | ||
|
||
#define PLATFORM_POWER_RESTORE_POLICY_GUID {0x85bcbff7, 0x8f9d, 0x4997, {0xac, 0x46, 0x5b, 0x36, 0x70, 0x0b, 0x0b, 0x85}} | ||
|
||
// | ||
// Power Restore Policy definition from IPMI Spec. | ||
// | ||
typedef enum { | ||
PowerRestorePolicyPowerOff = 0x00, | ||
PowerRestorePolicyLastState = 0x01, | ||
PowerRestorePolicyPowerOn = 0x02, | ||
PowerRestorePolicyNoChange = 0x03, | ||
} PLATFORM_POWER_RESTORE_POLICY_TYPE; | ||
|
||
#pragma pack(1) | ||
|
||
typedef struct _PLATFORM_POWER_RESTORE_POLICY { | ||
PLATFORM_POWER_RESTORE_POLICY_TYPE PolicyValue; | ||
} PLATFORM_POWER_RESTORE_POLICY; | ||
|
||
#pragma pack() | ||
|
||
#endif //#ifdef PLATFORM_POWER_RESTORE_POLICY_H_ |
35 changes: 0 additions & 35 deletions
35
IpmiFeaturePkg/Include/Library/PlatformPowerRestorePolicyConfigurationLib.h
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.