1 | # $Id: VBoxFsDxe.inf 29125 2010-05-06 09:43:05Z 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 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 |
|
---|
22 | [Defines]
|
---|
23 | INF_VERSION = 0x00010005
|
---|
24 | BASE_NAME = VBoxFsDxe
|
---|
25 | FILE_GUID = 0C842421-5699-4E97-BB6B-17B28696DB6E
|
---|
26 | MODULE_TYPE = UEFI_DRIVER
|
---|
27 | VERSION_STRING = 1.0
|
---|
28 | # SUPPORTED_ARCHITECTURES = IA32|X64|IPF|EBC
|
---|
29 | EDK_RELEASE_VERSION = 0x00020000
|
---|
30 | EFI_SPECIFICATION_VERSION = 0x00020000
|
---|
31 | ENTRY_POINT = DxeInitializeVBoxFs
|
---|
32 | UNLOAD_IMAGE = DxeUninitializeVBoxFs
|
---|
33 |
|
---|
34 | [Sources.common]
|
---|
35 | VBoxFsDxe.c
|
---|
36 |
|
---|
37 | [Packages]
|
---|
38 | MdePkg/MdePkg.dec
|
---|
39 | IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
---|
40 | VBoxPkg/VBoxPkg.dec
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | UefiRuntimeServicesTableLib
|
---|
44 | UefiBootServicesTableLib
|
---|
45 | MemoryAllocationLib
|
---|
46 | BaseMemoryLib
|
---|
47 | BaseLib
|
---|
48 | UefiLib
|
---|
49 | UefiDriverEntryPoint
|
---|
50 | DebugLib
|
---|
51 | PcdLib
|
---|
52 |
|
---|
53 | [Guids]
|
---|
54 | gEfiFileInfoGuid
|
---|
55 | gEfiFileSystemInfoGuid
|
---|
56 | gEfiFileSystemVolumeLabelInfoIdGuid
|
---|
57 |
|
---|
58 |
|
---|
59 | [Protocols]
|
---|
60 | gEfiDiskIoProtocolGuid
|
---|
61 | gEfiBlockIoProtocolGuid
|
---|
62 | gEfiSimpleFileSystemProtocolGuid
|
---|
63 | gEfiUnicodeCollationProtocolGuid
|
---|
64 | gEfiUnicodeCollation2ProtocolGuid
|
---|
65 |
|
---|
66 | [Pcd]
|
---|
67 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang
|
---|
68 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
|
---|
69 |
|
---|