2007-09-26 17:35:36 +08:00
|
|
|
/** @file
|
2018-06-27 21:08:52 +08:00
|
|
|
Recovery library class defines a set of methods related recovery boot mode.
|
2009-08-11 23:51:48 +08:00
|
|
|
This library class is no longer used and modules using this library should
|
2010-03-18 04:48:52 +08:00
|
|
|
directly locate EFI_PEI_RECOVERY_MODULE_PPI, defined in the PI 1.2 specification.
|
2007-09-26 17:35:36 +08:00
|
|
|
|
2018-06-27 21:08:52 +08:00
|
|
|
Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 07:05:13 +08:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-09-26 17:35:36 +08:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __RECOVERY_LIB_H__
|
|
|
|
#define __RECOVERY_LIB_H__
|
|
|
|
|
|
|
|
/**
|
2009-06-11 22:17:23 +08:00
|
|
|
Calling this function causes the system to carry out a recovery boot path.
|
2018-06-27 21:08:52 +08:00
|
|
|
|
2010-03-18 04:48:52 +08:00
|
|
|
@retval EFI_SUCCESS Recovery boot path succeeded.
|
|
|
|
@retval Others Recovery boot path failure.
|
2008-04-09 13:44:04 +08:00
|
|
|
|
2007-09-26 17:35:36 +08:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2007-09-27 11:20:28 +08:00
|
|
|
PeiRecoverFirmware (
|
2007-09-26 17:35:36 +08:00
|
|
|
VOID
|
2008-09-04 17:37:28 +08:00
|
|
|
);
|
2007-09-26 17:35:36 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|