]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/UnixSimpleFileSystemDxe/UnixSimpleFileSystem.inf
1. Correct File header to ## @file
[mirror_edk2.git] / UnixPkg / UnixSimpleFileSystemDxe / UnixSimpleFileSystem.inf
1 ## @file
2 # Simple filesystem driver
3 #
4 # Produce Simple File System abstractions for directories on your PC using Unix APIs.
5 # The configuration of what devices to mount or emulate comes from
6 # environment variables.
7 # Copyright (c) 2006 - 2010, Intel Corporation
8 #
9 # All rights reserved. This program and the accompanying materials
10 # are licensed and made available under the terms and conditions of the BSD License
11 # which accompanies this distribution. The full text of the license may be found at
12 # http://opensource.org/licenses/bsd-license.php
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16 #
17 ##
18
19 [Defines]
20 INF_VERSION = 0x00010005
21 BASE_NAME = UnixSimpleFileSystem
22 FILE_GUID = f330834e-8985-11db-a295-0040d02b1835
23 MODULE_TYPE = UEFI_DRIVER
24 VERSION_STRING = 1.0
25 EDK_RELEASE_VERSION = 0x00020000
26 EFI_SPECIFICATION_VERSION = 0x00020000
27
28 ENTRY_POINT = InitializeUnixSimpleFileSystem
29
30 #
31 # The following information is for reference only and not required by the build tools.
32 #
33 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
34 #
35 # DRIVER_BINDING = gUnixSimpleFileSystemDriverBinding
36 # COMPONENT_NAME = gUnixSimpleFileSystemComponentName
37 #
38
39 [Sources]
40 ComponentName.c
41 UnixSimpleFileSystem.c
42 UnixSimpleFileSystem.h
43 EntryPoint.c
44
45
46 [Packages]
47 MdePkg/MdePkg.dec
48 UnixPkg/UnixPkg.dec
49
50
51 [LibraryClasses]
52 UefiBootServicesTableLib
53 MemoryAllocationLib
54 BaseMemoryLib
55 UefiLib
56 UefiDriverEntryPoint
57 BaseLib
58 DebugLib
59
60
61 [Guids]
62 gEfiFileSystemVolumeLabelInfoIdGuid # SOMETIMES_CONSUMED
63 gEfiFileInfoGuid # SOMETIMES_CONSUMED
64 gEfiFileSystemInfoGuid # SOMETIMES_CONSUMED
65 gEfiUnixFileSystemGuid # ALWAYS_CONSUMED
66
67
68 [Protocols]
69 gEfiSimpleFileSystemProtocolGuid # PROTOCOL BY_START
70 gEfiUnixIoProtocolGuid # PROTOCOL TO_START
71