1## @file
2# Simple filesystem driver
3#
4# Produce Simple File System abstractions for directories on your PC using Win32 APIs.
5#  The configuration of what devices to mount or emulate comes from NT
6#  environment variables. The variables must be visible to the Microsoft*
7#  Developer Studio for them to work.
8# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
9#
10#  This program and the accompanying materials
11#  are licensed and made available under the terms and conditions of the BSD License
12#  which accompanies this distribution. The full text of the license may be found at
13#  http://opensource.org/licenses/bsd-license.php
14#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#
18##
19
20[Defines]
21  INF_VERSION                    = 0x00010005
22  BASE_NAME                      = WinNtSimpleFileSystemDxe
23  FILE_GUID                      = 9C25E18B-76BA-43da-A132-DBB0997CEFEF
24  MODULE_TYPE                    = UEFI_DRIVER
25  VERSION_STRING                 = 1.0
26
27  ENTRY_POINT                    = InitializeWinNtSimpleFileSystem
28
29#
30# The following information is for reference only and not required by the build tools.
31#
32#  VALID_ARCHITECTURES           = IA32
33#
34#  DRIVER_BINDING                =  gWinNtSimpleFileSystemDriverBinding
35#  COMPONENT_NAME                =  gWinNtSimpleFileSystemComponentName
36#
37
38[Sources]
39  ComponentName.c
40  WinNtSimpleFileSystem.c
41  WinNtSimpleFileSystem.h
42
43[Packages]
44  MdePkg/MdePkg.dec
45  Nt32Pkg/Nt32Pkg.dec
46
47
48[LibraryClasses]
49  MemoryAllocationLib
50  UefiBootServicesTableLib
51  BaseMemoryLib
52  UefiLib
53  UefiDriverEntryPoint
54  BaseLib
55  DebugLib
56
57
58[Guids]
59  gEfiFileSystemVolumeLabelInfoIdGuid           # SOMETIMES_CONSUMED
60  gEfiFileInfoGuid                              # SOMETIMES_CONSUMED
61  gEfiFileSystemInfoGuid                        # SOMETIMES_CONSUMED
62  gEfiWinNtFileSystemGuid                       # ALWAYS_CONSUMED
63
64
65[Protocols]
66  gEfiSimpleFileSystemProtocolGuid              # PROTOCOL BY_START
67  gEfiWinNtIoProtocolGuid                       # PROTOCOL TO_START
68
69