]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemDxe.inf
MdeModulePkg: Clean up source files
[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
BJ
18#\r
19# This program and the accompanying materials\r
20# are licensed and made available under the terms and conditions of the BSD License\r
21# which accompanies this distribution. The full text of the license may be found at\r
22# http://opensource.org/licenses/bsd-license.php\r
23#\r
24# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
25# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
26#\r
27##\r
28\r
29[Defines]\r
30 INF_VERSION = 0x00010005\r
31 BASE_NAME = FvSimpleFileSystem\r
32 MODULE_UNI_FILE = FvSimpleFileSystem.uni\r
33 FILE_GUID = 907125c0-a5f1-11e3-a3fe-a3198b49350c\r
34 MODULE_TYPE = UEFI_DRIVER\r
35 VERSION_STRING = 1.0\r
36 ENTRY_POINT = FvSimpleFileSystemEntryPoint\r
37\r
38[Sources]\r
39\r
40 ComponentName.c\r
41 FvSimpleFileSystem.c\r
42 FvSimpleFileSystemEntryPoint.c\r
43 FvSimpleFileSystemInternal.h\r
44\r
45[Packages]\r
46 MdePkg/MdePkg.dec\r
47 MdeModulePkg/MdeModulePkg.dec\r
48\r
49[LibraryClasses]\r
50 BaseLib\r
51 DevicePathLib\r
52 MemoryAllocationLib\r
53 PrintLib\r
54 UefiDriverEntryPoint\r
55 UefiLib\r
56\r
57[Pcd]\r
58 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang ## SOMETIMES_CONSUMES\r
59 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang ## SOMETIMES_CONSUMES\r
60\r
61[Guids]\r
62 gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
63 gEfiFileSystemInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
64 gEfiFileSystemVolumeLabelInfoIdGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
65\r
66[Protocols]\r
67 gEfiDevicePathProtocolGuid ## TO_START\r
68 gEfiFirmwareVolume2ProtocolGuid ## TO_START\r
69 gEfiUnicodeCollationProtocolGuid ## TO_START\r
70 gEfiUnicodeCollation2ProtocolGuid ## TO_START\r
71 gEfiSimpleFileSystemProtocolGuid ## BY_START\r
72\r
73[UserExtensions.TianoCore."ExtraFiles"]\r
d1102dba 74 FvSimpleFileSystemExtra.uni\r