]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Framework/FirmwareVolumeImageFormat.h
Remove unnecessary FRAMEWORK_ prefix in IntelFrameworkPkg definitions for those defin...
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / FirmwareVolumeImageFormat.h
1 /** @file
2 This file defines the data structures that are architecturally defined for file
3 images loaded via the FirmwareVolume protocol. The Firmware Volume specification
4 is the basis for these definitions.
5
6 Copyright (c) 2006, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 @par Revision Reference:
16 These definitions are from Firmware Volume Spec 0.9.
17
18 **/
19
20 #ifndef __FIRMWARE_VOLUME_IMAGE_FORMAT_H__
21 #define __FIRMWARE_VOLUME_IMAGE_FORMAT_H__
22
23 //
24 // Bit values for AuthenticationStatus
25 //
26 #define EFI_AGGREGATE_AUTH_STATUS_PLATFORM_OVERRIDE 0x000001
27 #define EFI_AGGREGATE_AUTH_STATUS_IMAGE_SIGNED 0x000002
28 #define EFI_AGGREGATE_AUTH_STATUS_NOT_TESTED 0x000004
29 #define EFI_AGGREGATE_AUTH_STATUS_TEST_FAILED 0x000008
30 #define EFI_AGGREGATE_AUTH_STATUS_ALL 0x00000f
31
32 #define EFI_LOCAL_AUTH_STATUS_PLATFORM_OVERRIDE 0x010000
33 #define EFI_LOCAL_AUTH_STATUS_IMAGE_SIGNED 0x020000
34 #define EFI_LOCAL_AUTH_STATUS_NOT_TESTED 0x040000
35 #define EFI_LOCAL_AUTH_STATUS_TEST_FAILED 0x080000
36 #define EFI_LOCAL_AUTH_STATUS_ALL 0x0f0000
37
38 #endif