blob: d77c6e544bb9000a57d15532b684a8eba8dc1a78 [file] [log] [blame]
Vishal Bhoj82c80712015-12-15 21:13:33 +05301/** @file
2 Null Recovery Library instance does nothing and returns unsupported status.
3
4 This library instance is no longer used and module using this library
5 class should update to directly locate EFI_PEI_RECOVERY_MODULE_PPI defined
6 in PI 1.2 specification.
7
8Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
9This program and the accompanying materials
10are licensed and made available under the terms and conditions of the BSD License
11which accompanies this distribution. The full text of the license may be found at
12http://opensource.org/licenses/bsd-license.php
13
14THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16
17**/
18#include <PiPei.h>
19#include <Library/RecoveryLib.h>
20
21/**
22 Calling this function causes the system do recovery boot path.
23
24 @retval EFI_UNSUPPORTED Recovery is not supported.
25**/
26EFI_STATUS
27EFIAPI
28PeiRecoverFirmware (
29 VOID
30 )
31{
32 return EFI_UNSUPPORTED;
33}
34