]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
UefiCpuPkg: Remove double \r
[mirror_edk2.git] / Nt32Pkg / WinNtSimpleFileSystemDxe / WinNtSimpleFileSystemDxe.inf
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 # SPDX-License-Identifier: BSD-2-Clause-Patent
11 #
12 #
13 ##
14
15 [Defines]
16 INF_VERSION = 0x00010005
17 BASE_NAME = WinNtSimpleFileSystemDxe
18 FILE_GUID = 9C25E18B-76BA-43da-A132-DBB0997CEFEF
19 MODULE_TYPE = UEFI_DRIVER
20 VERSION_STRING = 1.0
21
22 ENTRY_POINT = InitializeWinNtSimpleFileSystem
23
24 #
25 # The following information is for reference only and not required by the build tools.
26 #
27 # VALID_ARCHITECTURES = IA32
28 #
29 # DRIVER_BINDING = gWinNtSimpleFileSystemDriverBinding
30 # COMPONENT_NAME = gWinNtSimpleFileSystemComponentName
31 #
32
33 [Sources]
34 ComponentName.c
35 WinNtSimpleFileSystem.c
36 WinNtSimpleFileSystem.h
37
38 [Packages]
39 MdePkg/MdePkg.dec
40 Nt32Pkg/Nt32Pkg.dec
41
42
43 [LibraryClasses]
44 MemoryAllocationLib
45 UefiBootServicesTableLib
46 BaseMemoryLib
47 UefiLib
48 UefiDriverEntryPoint
49 BaseLib
50 DebugLib
51
52
53 [Guids]
54 gEfiFileSystemVolumeLabelInfoIdGuid # SOMETIMES_CONSUMED
55 gEfiFileInfoGuid # SOMETIMES_CONSUMED
56 gEfiFileSystemInfoGuid # SOMETIMES_CONSUMED
57 gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED
58
59
60 [Protocols]
61 gEfiSimpleFileSystemProtocolGuid # PROTOCOL BY_START
62 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START
63