1 | # $Id: VBoxFsDxe.inf 62501 2016-07-22 19:08:57Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # VBoxFsDxe - VBox filesystem wrapper.
|
---|
4 | #
|
---|
5 | # This layer encorporates generic layer for filesystem implementations.
|
---|
6 | # Here we put filesystem implementations needed by VirtualBox,
|
---|
7 | # but not (yet) included into EDK2.
|
---|
8 | #
|
---|
9 |
|
---|
10 | #
|
---|
11 | # Copyright (C) 2010-2016 Oracle Corporation
|
---|
12 | #
|
---|
13 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
14 | # available from http://www.virtualbox.org. This file is free software;
|
---|
15 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
16 | # General Public License (GPL) as published by the Free Software
|
---|
17 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
18 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
19 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
20 | #
|
---|
21 | # The contents of this file may alternatively be used under the terms
|
---|
22 | # of the Common Development and Distribution License Version 1.0
|
---|
23 | # (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
24 | # VirtualBox OSE distribution, in which case the provisions of the
|
---|
25 | # CDDL are applicable instead of those of the GPL.
|
---|
26 | #
|
---|
27 | # You may elect to license modified versions of this file under the
|
---|
28 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
29 | #
|
---|
30 |
|
---|
31 | [Defines]
|
---|
32 | INF_VERSION = 0x00010005
|
---|
33 | BASE_NAME = VBoxFsDxe
|
---|
34 | FILE_GUID = 0C842421-5699-4E97-BB6B-17B28696DB6E
|
---|
35 | MODULE_TYPE = UEFI_DRIVER
|
---|
36 | VERSION_STRING = 1.0
|
---|
37 | # SUPPORTED_ARCHITECTURES = IA32|X64|IPF|EBC
|
---|
38 | EDK_RELEASE_VERSION = 0x00020000
|
---|
39 | EFI_SPECIFICATION_VERSION = 0x00020000
|
---|
40 | ENTRY_POINT = DxeInitializeVBoxFs
|
---|
41 | UNLOAD_IMAGE = DxeUninitializeVBoxFs
|
---|
42 |
|
---|
43 | [Sources.common]
|
---|
44 | VBoxFsDxe.c
|
---|
45 |
|
---|
46 | [Packages]
|
---|
47 | MdePkg/MdePkg.dec
|
---|
48 | IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
---|
49 | VBoxPkg/VBoxPkg.dec
|
---|
50 |
|
---|
51 | [LibraryClasses]
|
---|
52 | UefiRuntimeServicesTableLib
|
---|
53 | UefiBootServicesTableLib
|
---|
54 | MemoryAllocationLib
|
---|
55 | BaseMemoryLib
|
---|
56 | BaseLib
|
---|
57 | UefiLib
|
---|
58 | UefiDriverEntryPoint
|
---|
59 | DebugLib
|
---|
60 | PcdLib
|
---|
61 |
|
---|
62 | [Guids]
|
---|
63 | gEfiFileInfoGuid
|
---|
64 | gEfiFileSystemInfoGuid
|
---|
65 | gEfiFileSystemVolumeLabelInfoIdGuid
|
---|
66 |
|
---|
67 |
|
---|
68 | [Protocols]
|
---|
69 | gEfiDiskIoProtocolGuid
|
---|
70 | gEfiBlockIoProtocolGuid
|
---|
71 | gEfiSimpleFileSystemProtocolGuid
|
---|
72 | gEfiUnicodeCollationProtocolGuid
|
---|
73 | gEfiUnicodeCollation2ProtocolGuid
|
---|
74 |
|
---|
75 | [Pcd]
|
---|
76 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang
|
---|
77 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
|
---|
78 |
|
---|