]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemDxe.inf
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Universal / FvSimpleFileSystemDxe / FvSimpleFileSystemDxe.inf
CommitLineData
9da91aea
BJ
1## @file\r
2# Support for Simple File System over Firmware Volume.\r
3#\r
4# This driver uses the EFI_FIRMWARE_VOLUME2_PROTOCOL to expose files in firmware\r
5# volumes via the the EFI_SIMPLE_FILESYSTEM_PROTOCOL and EFI_FILE_PROTOCOL.\r
6#\r
7# It will expose a single directory, containing one file for each file in the firmware\r
8# volume. If a file has a UI section, its contents will be used as a filename.\r
9# Otherwise, a string representation of the GUID will be used.\r
10# Files of an executable type (That is PEIM, DRIVER, COMBINED_PEIM_DRIVER and APPLICATION)\r
11# will have ".efi" added to their filename.\r
12#\r
13# Its primary intended use is to be able to start EFI applications embedded in FVs\r
14# from the UEFI shell. It is entirely read-only.\r
15#\r
16# Copyright (c) 2014, ARM Ltd. All rights reserved.<BR>\r
d1102dba 17# Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>\r
9da91aea 18#\r
9d510e61 19# SPDX-License-Identifier: BSD-2-Clause-Patent\r
9da91aea
BJ
20#\r
21##\r
22\r
23[Defines]\r
24 INF_VERSION = 0x00010005\r
25 BASE_NAME = FvSimpleFileSystem\r
26 MODULE_UNI_FILE = FvSimpleFileSystem.uni\r
27 FILE_GUID = 907125c0-a5f1-11e3-a3fe-a3198b49350c\r
28 MODULE_TYPE = UEFI_DRIVER\r
29 VERSION_STRING = 1.0\r
30 ENTRY_POINT = FvSimpleFileSystemEntryPoint\r
31\r
32[Sources]\r
33\r
34 ComponentName.c\r
35 FvSimpleFileSystem.c\r
36 FvSimpleFileSystemEntryPoint.c\r
37 FvSimpleFileSystemInternal.h\r
38\r
39[Packages]\r
40 MdePkg/MdePkg.dec\r
41 MdeModulePkg/MdeModulePkg.dec\r
42\r
43[LibraryClasses]\r
44 BaseLib\r
45 DevicePathLib\r
46 MemoryAllocationLib\r
47 PrintLib\r
48 UefiDriverEntryPoint\r
49 UefiLib\r
50\r
51[Pcd]\r
52 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang ## SOMETIMES_CONSUMES\r
53 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang ## SOMETIMES_CONSUMES\r
54\r
55[Guids]\r
56 gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
57 gEfiFileSystemInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
58 gEfiFileSystemVolumeLabelInfoIdGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
59\r
60[Protocols]\r
61 gEfiDevicePathProtocolGuid ## TO_START\r
62 gEfiFirmwareVolume2ProtocolGuid ## TO_START\r
63 gEfiUnicodeCollationProtocolGuid ## TO_START\r
64 gEfiUnicodeCollation2ProtocolGuid ## TO_START\r
65 gEfiSimpleFileSystemProtocolGuid ## BY_START\r
66\r
67[UserExtensions.TianoCore."ExtraFiles"]\r
d1102dba 68 FvSimpleFileSystemExtra.uni\r