1 | ## @file
|
---|
2 | # Component Description File for FAT module.
|
---|
3 | #
|
---|
4 | # This UEFI driver detects the FAT file system in the disk.
|
---|
5 | # It also produces the Simple File System protocol for the consumer to
|
---|
6 | # perform file and directory operations on the disk.
|
---|
7 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = Fat
|
---|
17 | MODULE_UNI_FILE = Fat.uni
|
---|
18 | FILE_GUID = 961578FE-B6B7-44c3-AF35-6BC705CD2B1F
|
---|
19 | MODULE_TYPE = UEFI_DRIVER
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 |
|
---|
22 | ENTRY_POINT = FatEntryPoint
|
---|
23 | UNLOAD_IMAGE = FatUnload
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
29 | #
|
---|
30 | # DRIVER_BINDING = gFatDriverBinding
|
---|
31 | # COMPONENT_NAME = gFatComponentName
|
---|
32 | # COMPONENT_NAME2 = gFatComponentName2
|
---|
33 | #
|
---|
34 |
|
---|
35 | [Sources]
|
---|
36 | DirectoryCache.c
|
---|
37 | DiskCache.c
|
---|
38 | FileName.c
|
---|
39 | Hash.c
|
---|
40 | DirectoryManage.c
|
---|
41 | ComponentName.c
|
---|
42 | FatFileSystem.h
|
---|
43 | Fat.h
|
---|
44 | ReadWrite.c
|
---|
45 | OpenVolume.c
|
---|
46 | Open.c
|
---|
47 | Misc.c
|
---|
48 | Init.c
|
---|
49 | Info.c
|
---|
50 | FileSpace.c
|
---|
51 | Flush.c
|
---|
52 | Fat.c
|
---|
53 | Delete.c
|
---|
54 | Data.c
|
---|
55 | UnicodeCollation.c
|
---|
56 |
|
---|
57 | [Packages]
|
---|
58 | MdePkg/MdePkg.dec
|
---|
59 |
|
---|
60 | [LibraryClasses]
|
---|
61 | UefiRuntimeServicesTableLib
|
---|
62 | UefiBootServicesTableLib
|
---|
63 | MemoryAllocationLib
|
---|
64 | BaseMemoryLib
|
---|
65 | BaseLib
|
---|
66 | UefiLib
|
---|
67 | UefiDriverEntryPoint
|
---|
68 | DebugLib
|
---|
69 | PcdLib
|
---|
70 |
|
---|
71 | [Guids]
|
---|
72 | gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
---|
73 | gEfiFileSystemInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
---|
74 | gEfiFileSystemVolumeLabelInfoIdGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
---|
75 |
|
---|
76 | [Protocols]
|
---|
77 | gEfiDiskIoProtocolGuid ## TO_START
|
---|
78 | gEfiDiskIo2ProtocolGuid ## TO_START
|
---|
79 | gEfiBlockIoProtocolGuid ## TO_START
|
---|
80 | gEfiSimpleFileSystemProtocolGuid ## BY_START
|
---|
81 | gEfiUnicodeCollationProtocolGuid ## TO_START
|
---|
82 | gEfiUnicodeCollation2ProtocolGuid ## TO_START
|
---|
83 |
|
---|
84 | [Pcd]
|
---|
85 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang ## SOMETIMES_CONSUMES
|
---|
86 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang ## SOMETIMES_CONSUMES
|
---|
87 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
88 | FatExtra.uni
|
---|