]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.inf
625a5fd76e4fccddca1b1cd13d42275fcc63a82b
[mirror_edk2.git] / Nt32Pkg / WinNtSimpleFileSystemDxe / WinNtSimpleFileSystem.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 - 2007, 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 ################################################################################
21 #
22 # Defines Section - statements that will be processed to create a Makefile.
23 #
24 ################################################################################
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = WinNtSimpleFileSystem
28 FILE_GUID = 9C25E18B-76BA-43da-A132-DBB0997CEFEF
29 MODULE_TYPE = UEFI_DRIVER
30 VERSION_STRING = 1.0
31 EDK_RELEASE_VERSION = 0x00020000
32 EFI_SPECIFICATION_VERSION = 0x00020000
33
34 ENTRY_POINT = InitializeWinNtSimpleFileSystem
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32
40 #
41 # DRIVER_BINDING = gWinNtSimpleFileSystemDriverBinding
42 # COMPONENT_NAME = gWinNtSimpleFileSystemComponentName
43 #
44
45 ################################################################################
46 #
47 # Sources Section - list of files that are required for the build to succeed.
48 #
49 ################################################################################
50
51 [Sources.common]
52 ComponentName.c
53 WinNtSimpleFileSystem.c
54 WinNtSimpleFileSystem.h
55
56 ################################################################################
57 #
58 # Includes Section - list of Include locations that are required for
59 # this module.
60 #
61 ################################################################################
62
63 [Includes]
64 $(WORKSPACE)/MdePkg/Include/Library
65
66 ################################################################################
67 #
68 # Package Dependency Section - list of Package files that are required for
69 # this module.
70 #
71 ################################################################################
72
73 [Packages]
74 Nt32Pkg/Nt32Pkg.dec
75 MdePkg/MdePkg.dec
76
77
78 ################################################################################
79 #
80 # Library Class Section - list of Library Classes that are required for
81 # this module.
82 #
83 ################################################################################
84
85 [LibraryClasses]
86 MemoryAllocationLib
87 UefiBootServicesTableLib
88 BaseMemoryLib
89 UefiLib
90 UefiDriverEntryPoint
91 BaseLib
92 DebugLib
93
94
95 ################################################################################
96 #
97 # Guid C Name Section - list of Guids that this module uses or produces.
98 #
99 ################################################################################
100
101 [Guids]
102 gEfiFileSystemVolumeLabelInfoIdGuid # SOMETIMES_CONSUMED
103 gEfiFileInfoGuid # SOMETIMES_CONSUMED
104 gEfiFileSystemInfoGuid # SOMETIMES_CONSUMED
105 gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED
106
107
108 ################################################################################
109 #
110 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
111 # that this module uses or produces.
112 #
113 ################################################################################
114
115 [Protocols]
116 gEfiSimpleFileSystemProtocolGuid # PROTOCOL BY_START
117 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START
118