blob: f49394a8224c237e7004c66e7adc6ff14037e6ba [file] [log] [blame]
Vishal Bhoj82c80712015-12-15 21:13:33 +05301/** @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
6Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.<BR>
7This program and the accompanying materials are licensed and made available under
8the terms and conditions of the BSD License that accompanies this distribution.
9The full text of the license may be found at
10http://opensource.org/licenses/bsd-license.php.
11
12THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15**/
16
17#ifndef __RECOVERY_LIB_H__
18#define __RECOVERY_LIB_H__
19
20/**
21 Calling this function causes the system to carry out a recovery boot path.
22
23 @retval EFI_SUCCESS Recovery boot path succeeded.
24 @retval Others Recovery boot path failure.
25
26**/
27EFI_STATUS
28EFIAPI
29PeiRecoverFirmware (
30 VOID
31 );
32
33#endif
34
35