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