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