]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.inf
Porting SecMain module for Nt32Pkg, but not enable PI, so it currently dependent...
[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 # Package Dependency Section - list of Package files that are required for
59 # this module.
60 #
61 ################################################################################
62
63 [Packages]
64 MdePkg/MdePkg.dec
65 Nt32Pkg/Nt32Pkg.dec
66
67
68 ################################################################################
69 #
70 # Library Class Section - list of Library Classes that are required for
71 # this module.
72 #
73 ################################################################################
74
75 [LibraryClasses]
76 MemoryAllocationLib
77 UefiBootServicesTableLib
78 BaseMemoryLib
79 UefiLib
80 UefiDriverEntryPoint
81 BaseLib
82 DebugLib
83
84
85 ################################################################################
86 #
87 # Guid C Name Section - list of Guids that this module uses or produces.
88 #
89 ################################################################################
90
91 [Guids]
92 gEfiFileSystemVolumeLabelInfoIdGuid # SOMETIMES_CONSUMED
93 gEfiFileInfoGuid # SOMETIMES_CONSUMED
94 gEfiFileSystemInfoGuid # SOMETIMES_CONSUMED
95 gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED
96
97
98 ################################################################################
99 #
100 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
101 # that this module uses or produces.
102 #
103 ################################################################################
104
105 [Protocols]
106 gEfiSimpleFileSystemProtocolGuid # PROTOCOL BY_START
107 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START
108