]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.c
Fixed option name, ForceRebuild
[mirror_edk2.git] / MdeModulePkg / Library / DxeCapsuleLibNull / DxeCapsuleLibNull.c
CommitLineData
d0e24078
LG
1/**@file\r
2 Capsule Library Null instance. \r
3\r
4Copyright (c) 2007 Intel Corporation\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14#include <PiDxe.h>\r
15#include <Library/CapsuleLib.h>\r
16\r
17/**\r
18 Those capsules supported by the firmwares.\r
19 \r
20 @retval EFI_SUCESS Input capsule is supported by firmware.\r
21 @retval EFI_UNSUPPORTED Input capsule is not supported by the firmware.\r
22**/\r
23EFI_STATUS\r
24EFIAPI\r
25SupportCapsuleImage (\r
26 IN EFI_CAPSULE_HEADER *CapsuleHeader\r
27 )\r
28{\r
29 return EFI_UNSUPPORTED;\r
30}\r
31\r
32/**\r
33 The firmware implements to process the capsule image.\r
34 \r
35 @retval EFI_SUCESS Process Capsule Image successfully. \r
36 @retval EFI_UNSUPPORTED Capsule image is not supported by the firmware.\r
37**/\r
38EFI_STATUS\r
39EFIAPI\r
40ProcessCapsuleImage (\r
41 IN EFI_CAPSULE_HEADER *CapsuleHeader\r
42 )\r
43{\r
44 return EFI_UNSUPPORTED;\r
45}\r
46\r
47\r