1 | # $Id: VBoxHfs.inf 29125 2010-05-06 09:43:05Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # VBoxHfs - VBox HFS FS driver.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2010 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 0x00010005
|
---|
20 | BASE_NAME = VBoxHfs
|
---|
21 | FILE_GUID = 6E506CC2-65E0-4814-994A-08ECDA046987
|
---|
22 | MODULE_TYPE = UEFI_DRIVER
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 | EDK_RELEASE_VERSION = 0x00020000
|
---|
25 | EFI_SPECIFICATION_VERSION = 0x00020000
|
---|
26 |
|
---|
27 | ENTRY_POINT = fsw_efi_main
|
---|
28 |
|
---|
29 | [Sources.common]
|
---|
30 | fsw_hfs.c
|
---|
31 | fsw_core.c
|
---|
32 | fsw_efi_lib.c
|
---|
33 | fsw_efi.c
|
---|
34 | fsw_lib.c
|
---|
35 |
|
---|
36 | [Packages]
|
---|
37 | MdePkg/MdePkg.dec
|
---|
38 | IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
---|
39 | VBoxPkg/VBoxPkg.dec
|
---|
40 |
|
---|
41 | [LibraryClasses]
|
---|
42 | UefiRuntimeServicesTableLib
|
---|
43 | UefiBootServicesTableLib
|
---|
44 | MemoryAllocationLib
|
---|
45 | BaseMemoryLib
|
---|
46 | BaseLib
|
---|
47 | UefiLib
|
---|
48 | UefiDriverEntryPoint
|
---|
49 | DebugLib
|
---|
50 | PcdLib
|
---|
51 |
|
---|
52 | [Guids]
|
---|
53 | gEfiFileInfoGuid
|
---|
54 | gEfiFileSystemInfoGuid
|
---|
55 | gEfiFileSystemVolumeLabelInfoIdGuid
|
---|
56 |
|
---|
57 | [Protocols]
|
---|
58 | gEfiDiskIoProtocolGuid
|
---|
59 | gEfiBlockIoProtocolGuid
|
---|
60 | gEfiSimpleFileSystemProtocolGuid
|
---|
61 | gEfiUnicodeCollationProtocolGuid
|
---|
62 | gEfiUnicodeCollation2ProtocolGuid
|
---|
63 |
|
---|
64 | [Pcd]
|
---|
65 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang
|
---|
66 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
|
---|
67 |
|
---|
68 | [BuildOptions.common]
|
---|
69 | GCC:*_*_*_CC_FLAGS = -DFSTYPE=hfs
|
---|
70 | # -DFSW_DEBUG_LEVEL=3
|
---|
71 | INTEL:*_*_*_CC_FLAGS = -DFSTYPE=hfs
|
---|
72 | MSFT:*_*_*_CC_FLAGS = -DFSTYPE=hfs
|
---|
73 |
|
---|