]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Framework/FirmwareFileSystem.h
Fix wrong include issue, FirmwareVolumeHeader.h itself is part of FrameworkPei.h...
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / FirmwareFileSystem.h
1 /** @file
2 This file defines the data structures that comprise the FFS file system.
3
4 Copyright (c) 2007, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name: FrameworkFirmwareFileSystem.h
14
15 @par Revision Reference:
16 These definitions are from Firmware File System Spec 0.9 but not in PI specs.
17
18 **/
19
20 #ifndef _FRAMEWORK_FIRMWARE_FILE_SYSTEM_H_
21 #define _FRAMEWORK_FIRMWARE_FILE_SYSTEM_H_
22
23 #include <PiPei.h>
24
25 typedef UINT16 EFI_FFS_FILE_TAIL;
26
27 #define FFS_ATTRIB_TAIL_PRESENT 0x01
28 #define FFS_ATTRIB_RECOVERY 0x02
29 #define FFS_ATTRIB_HEADER_EXTENSION 0x04
30
31 #endif