2008-04-09 07:36:17 +02:00
|
|
|
/** @file
|
2009-08-11 17:51:48 +02:00
|
|
|
Null Recovery Library instance does nothing and returns unsupported status.
|
|
|
|
|
|
|
|
This library instance is no longer used and module using this library
|
|
|
|
class should update to directly locate EFI_PEI_RECOVERY_MODULE_PPI defined
|
|
|
|
in PI 1.2 specification.
|
2007-09-26 11:35:36 +02:00
|
|
|
|
2010-04-24 11:49:11 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-09-26 11:35:36 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
#include <PiPei.h>
|
2009-01-04 04:20:55 +01:00
|
|
|
#include <Library/RecoveryLib.h>
|
2007-09-26 11:35:36 +02:00
|
|
|
|
|
|
|
/**
|
2009-01-04 04:20:55 +01:00
|
|
|
Calling this function causes the system do recovery boot path.
|
2007-09-26 11:35:36 +02:00
|
|
|
|
2008-07-09 15:33:20 +02:00
|
|
|
@retval EFI_UNSUPPORTED Recovery is not supported.
|
2007-09-26 11:35:36 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2007-09-27 05:20:28 +02:00
|
|
|
PeiRecoverFirmware (
|
2007-09-26 11:35:36 +02:00
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|