]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
1. Correct File header to ## @file
[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
9 #
10 # All rights reserved. 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 EDK_RELEASE_VERSION = 0x00020000
27 EFI_SPECIFICATION_VERSION = 0x00020000
28
29 ENTRY_POINT = InitializeWinNtSimpleFileSystem
30
31 #
32 # The following information is for reference only and not required by the build tools.
33 #
34 # VALID_ARCHITECTURES = IA32
35 #
36 # DRIVER_BINDING = gWinNtSimpleFileSystemDriverBinding
37 # COMPONENT_NAME = gWinNtSimpleFileSystemComponentName
38 #
39
40 [Sources]
41 ComponentName.c
42 WinNtSimpleFileSystem.c
43 WinNtSimpleFileSystem.h
44
45 [Packages]
46 MdePkg/MdePkg.dec
47 Nt32Pkg/Nt32Pkg.dec
48
49
50 [LibraryClasses]
51 MemoryAllocationLib
52 UefiBootServicesTableLib
53 BaseMemoryLib
54 UefiLib
55 UefiDriverEntryPoint
56 BaseLib
57 DebugLib
58
59
60 [Guids]
61 gEfiFileSystemVolumeLabelInfoIdGuid # SOMETIMES_CONSUMED
62 gEfiFileInfoGuid # SOMETIMES_CONSUMED
63 gEfiFileSystemInfoGuid # SOMETIMES_CONSUMED
64 gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED
65
66
67 [Protocols]
68 gEfiSimpleFileSystemProtocolGuid # PROTOCOL BY_START
69 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START
70