]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.inf
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2920 6f19259b...
[mirror_edk2.git] / Nt32Pkg / WinNtSimpleFileSystemDxe / WinNtSimpleFileSystem.inf
CommitLineData
068eac81 1#/** @file\r
2# Simple filesystem driver\r
3#\r
4# Produce Simple File System abstractions for directories on your PC using Win32 APIs.\r
5# The configuration of what devices to mount or emulate comes from NT\r
6# environment variables. The variables must be visible to the Microsoft*\r
7# Developer Studio for them to work.\r
8# Copyright (c) 2006 - 2007, Intel Corporation\r
9#\r
10# All rights reserved. This program and the accompanying materials\r
11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17#\r
18#**/\r
19\r
20################################################################################\r
21#\r
22# Defines Section - statements that will be processed to create a Makefile.\r
23#\r
24################################################################################\r
25[Defines]\r
26 INF_VERSION = 0x00010005\r
27 BASE_NAME = WinNtSimpleFileSystem\r
28 FILE_GUID = 9C25E18B-76BA-43da-A132-DBB0997CEFEF\r
29 MODULE_TYPE = UEFI_DRIVER\r
30 VERSION_STRING = 1.0\r
31 EDK_RELEASE_VERSION = 0x00020000\r
32 EFI_SPECIFICATION_VERSION = 0x00020000\r
33\r
34 ENTRY_POINT = InitializeWinNtSimpleFileSystem\r
35\r
36#\r
37# The following information is for reference only and not required by the build tools.\r
38#\r
39# VALID_ARCHITECTURES = IA32\r
40#\r
41# DRIVER_BINDING = gWinNtSimpleFileSystemDriverBinding \r
42# COMPONENT_NAME = gWinNtSimpleFileSystemComponentName \r
43#\r
44\r
45################################################################################\r
46#\r
47# Sources Section - list of files that are required for the build to succeed.\r
48#\r
49################################################################################\r
50\r
51[Sources.common]\r
52 ComponentName.c\r
53 WinNtSimpleFileSystem.c\r
54 WinNtSimpleFileSystem.h\r
55\r
068eac81 56################################################################################\r
57#\r
58# Package Dependency Section - list of Package files that are required for\r
59# this module.\r
60#\r
61################################################################################\r
62\r
63[Packages]\r
068eac81 64 MdePkg/MdePkg.dec\r
0dea993c 65 Nt32Pkg/Nt32Pkg.dec\r
068eac81 66\r
67\r
68################################################################################\r
69#\r
70# Library Class Section - list of Library Classes that are required for\r
71# this module.\r
72#\r
73################################################################################\r
74\r
75[LibraryClasses]\r
76 MemoryAllocationLib\r
77 UefiBootServicesTableLib\r
78 BaseMemoryLib\r
79 UefiLib\r
80 UefiDriverEntryPoint\r
81 BaseLib\r
82 DebugLib\r
83\r
84\r
85################################################################################\r
86#\r
87# Guid C Name Section - list of Guids that this module uses or produces.\r
88#\r
89################################################################################\r
90\r
91[Guids]\r
92 gEfiFileSystemVolumeLabelInfoIdGuid # SOMETIMES_CONSUMED\r
93 gEfiFileInfoGuid # SOMETIMES_CONSUMED\r
94 gEfiFileSystemInfoGuid # SOMETIMES_CONSUMED\r
95 gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED\r
96\r
97\r
98################################################################################\r
99#\r
100# Protocol C Name Section - list of Protocol and Protocol Notify C Names\r
101# that this module uses or produces.\r
102#\r
103################################################################################\r
104\r
105[Protocols]\r
106 gEfiSimpleFileSystemProtocolGuid # PROTOCOL BY_START\r
107 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START\r
108\r