]>
Commit | Line | Data |
---|---|---|
6bfbb5f0 | 1 | ## @file\r |
348e2678 | 2 | #\r |
3cd91d32 LG |
3 | # Binary FAT32 EFI Driver for IA32, X64, IPF and EBC arch.\r |
4 | #\r | |
5 | # This UEFI driver detects the FAT file system in the disk.\r | |
6 | # It also produces the Simple File System protocol for the consumer to\r | |
7 | # perform file and directory operations on the disk.\r | |
8 | #\r | |
9d76963b | 9 | # Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>\r |
348e2678 | 10 | #\r |
9d76963b | 11 | # This program and the accompanying materials\r |
348e2678 | 12 | # are licensed and made available under the terms and conditions of the BSD License\r |
13 | # which accompanies this distribution. The full text of the license may be found at\r | |
14 | # http://opensource.org/licenses/bsd-license.php\r | |
15 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
16 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
17 | #\r | |
18 | #\r | |
6bfbb5f0 | 19 | ##\r |
348e2678 | 20 | \r |
348e2678 | 21 | [Defines]\r |
22 | INF_VERSION = 0x00010005\r | |
23 | BASE_NAME = Fat\r | |
24 | FILE_GUID = 961578FE-B6B7-44c3-AF35-6BC705CD2B1F\r | |
25 | MODULE_TYPE = UEFI_DRIVER\r | |
26 | VERSION_STRING = 1.0\r | |
348e2678 | 27 | \r |
28 | \r | |
29 | #\r | |
30 | # The following information is for reference only and not required by the build tools.\r | |
31 | #\r | |
32 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
33 | #\r | |
34 | \r | |
348e2678 | 35 | [Binaries.Ia32]\r |
c1c3d6b8 | 36 | PE32|Ia32/Fat.efi|*\r |
348e2678 | 37 | \r |
38 | [Binaries.X64]\r | |
c1c3d6b8 | 39 | PE32|X64/Fat.efi|*\r |
348e2678 | 40 | \r |
41 | [Binaries.IPF]\r | |
c1c3d6b8 | 42 | PE32|Ipf/Fat.efi|*\r |
348e2678 | 43 | \r |
44 | [Binaries.EBC]\r | |
c1c3d6b8 | 45 | PE32|Ebc/Fat.efi|*\r |
348e2678 | 46 | \r |
1282a3df | 47 | [Binaries.ARM]\r |
48 | PE32|Arm/Fat.efi|*\r | |
3d2f91ec OM |
49 | \r |
50 | [Binaries.AArch64]\r | |
51 | PE32|AArch64/Fat.efi|*\r |