]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Library/RecoveryLib.h
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Include / Library / RecoveryLib.h
1 /** @file
2 Recovery library class defines a set of methods related recovery boot mode.
3 This library class is no longer used and modules using this library should
4 directly locate EFI_PEI_RECOVERY_MODULE_PPI, defined in the PI 1.2 specification.
5
6 Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8
9 **/
10
11 #ifndef __RECOVERY_LIB_H__
12 #define __RECOVERY_LIB_H__
13
14 /**
15 Calling this function causes the system to carry out a recovery boot path.
16
17 @retval EFI_SUCCESS Recovery boot path succeeded.
18 @retval Others Recovery boot path failure.
19
20 **/
21 EFI_STATUS
22 EFIAPI
23 PeiRecoverFirmware (
24 VOID
25 );
26
27 #endif
28
29