2 # Support for Simple File System over Firmware Volume.
4 # This driver uses the EFI_FIRMWARE_VOLUME2_PROTOCOL to expose files in firmware
5 # volumes via the the EFI_SIMPLE_FILESYSTEM_PROTOCOL and EFI_FILE_PROTOCOL.
7 # It will expose a single directory, containing one file for each file in the firmware
8 # volume. If a file has a UI section, its contents will be used as a filename.
9 # Otherwise, a string representation of the GUID will be used.
10 # Files of an executable type (That is PEIM, DRIVER, COMBINED_PEIM_DRIVER and APPLICATION)
11 # will have ".efi" added to their filename.
13 # Its primary intended use is to be able to start EFI applications embedded in FVs
14 # from the UEFI shell. It is entirely read-only.
16 # Copyright (c) 2014, ARM Ltd. All rights reserved.<BR>
17 # Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
19 # This program and the accompanying materials
20 # are licensed and made available under the terms and conditions of the BSD License
21 # which accompanies this distribution. The full text of the license may be found at
22 # http://opensource.org/licenses/bsd-license.php
24 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
25 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
30 INF_VERSION = 0x00010005
31 BASE_NAME = FvSimpleFileSystem
32 MODULE_UNI_FILE = FvSimpleFileSystem.uni
33 FILE_GUID = 907125c0-a5f1-11e3-a3fe-a3198b49350c
34 MODULE_TYPE = UEFI_DRIVER
36 ENTRY_POINT = FvSimpleFileSystemEntryPoint
42 FvSimpleFileSystemEntryPoint.c
43 FvSimpleFileSystemInternal.h
47 MdeModulePkg/MdeModulePkg.dec
58 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang ## SOMETIMES_CONSUMES
59 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang ## SOMETIMES_CONSUMES
62 gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED
63 gEfiFileSystemInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED
64 gEfiFileSystemVolumeLabelInfoIdGuid ## SOMETIMES_CONSUMES ## UNDEFINED
67 gEfiDevicePathProtocolGuid ## TO_START
68 gEfiFirmwareVolume2ProtocolGuid ## TO_START
69 gEfiUnicodeCollationProtocolGuid ## TO_START
70 gEfiUnicodeCollation2ProtocolGuid ## TO_START
71 gEfiSimpleFileSystemProtocolGuid ## BY_START
73 [UserExtensions.TianoCore."ExtraFiles"]
74 FvSimpleFileSystemExtra.uni