]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - FatPkg/EnhancedFatDxe/Fat.inf
FatPkg: Refine casting expression result to bigger size
[mirror_edk2.git] / FatPkg / EnhancedFatDxe / Fat.inf
... / ...
CommitLineData
1## @file\r
2# Component Description File for FAT module.\r
3#\r
4# This UEFI driver detects the FAT file system in the disk.\r
5# It also produces the Simple File System protocol for the consumer to\r
6# perform file and directory operations on the disk.\r
7# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>\r
8#\r
9# This program and the accompanying materials are licensed and made available\r
10# under the terms and conditions of the BSD License which accompanies this\r
11# distribution. The full text of the license may be found at\r
12# http://opensource.org/licenses/bsd-license.php\r
13#\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17#\r
18##\r
19\r
20[Defines]\r
21 INF_VERSION = 0x00010005\r
22 BASE_NAME = Fat\r
23 MODULE_UNI_FILE = Fat.uni\r
24 FILE_GUID = 961578FE-B6B7-44c3-AF35-6BC705CD2B1F\r
25 MODULE_TYPE = UEFI_DRIVER\r
26 VERSION_STRING = 1.0\r
27\r
28 ENTRY_POINT = FatEntryPoint\r
29 UNLOAD_IMAGE = FatUnload\r
30\r
31#\r
32# The following information is for reference only and not required by the build tools.\r
33#\r
34# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
35#\r
36# DRIVER_BINDING = gFatDriverBinding\r
37# COMPONENT_NAME = gFatComponentName\r
38# COMPONENT_NAME2 = gFatComponentName2\r
39#\r
40\r
41[Sources]\r
42 DirectoryCache.c\r
43 DiskCache.c\r
44 FileName.c\r
45 Hash.c\r
46 DirectoryManage.c\r
47 ComponentName.c\r
48 FatFileSystem.h\r
49 Fat.h\r
50 ReadWrite.c\r
51 OpenVolume.c\r
52 Open.c\r
53 Misc.c\r
54 Init.c\r
55 Info.c\r
56 FileSpace.c\r
57 Flush.c\r
58 Fat.c\r
59 Delete.c\r
60 Data.c\r
61 UnicodeCollation.c\r
62\r
63[Packages]\r
64 MdePkg/MdePkg.dec\r
65\r
66[LibraryClasses]\r
67 UefiRuntimeServicesTableLib\r
68 UefiBootServicesTableLib\r
69 MemoryAllocationLib\r
70 BaseMemoryLib\r
71 BaseLib\r
72 UefiLib\r
73 UefiDriverEntryPoint\r
74 DebugLib\r
75 PcdLib\r
76\r
77[Guids]\r
78 gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
79 gEfiFileSystemInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
80 gEfiFileSystemVolumeLabelInfoIdGuid ## SOMETIMES_CONSUMES ## UNDEFINED\r
81\r
82[Protocols]\r
83 gEfiDiskIoProtocolGuid ## TO_START\r
84 gEfiDiskIo2ProtocolGuid ## TO_START\r
85 gEfiBlockIoProtocolGuid ## TO_START\r
86 gEfiSimpleFileSystemProtocolGuid ## BY_START\r
87 gEfiUnicodeCollationProtocolGuid ## TO_START\r
88 gEfiUnicodeCollation2ProtocolGuid ## TO_START\r
89\r
90[Pcd]\r
91 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang ## SOMETIMES_CONSUMES\r
92 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang ## SOMETIMES_CONSUMES\r
93[UserExtensions.TianoCore."ExtraFiles"]\r
94 FatExtra.uni\r