1 | # $Id: VBoxConsoleDxe.inf 28800 2010-04-27 08:22:32Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # VBoxConsole.inf - VBoxConsoleDxe module declarations.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2009-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 |
|
---|
19 |
|
---|
20 |
|
---|
21 | [Defines]
|
---|
22 | INF_VERSION = 0x00010005
|
---|
23 | BASE_NAME = VBoxConsoleDxe
|
---|
24 | FILE_GUID = 63330037-c9a0-498f-a539-b54c9141f4ca
|
---|
25 | MODULE_TYPE = UEFI_DRIVER
|
---|
26 | VERSION_STRING = 1.0
|
---|
27 | ENTRY_POINT = VBoxConsoleInit
|
---|
28 | UNLOAD_IMAGE = VBoxConsoleFini
|
---|
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 |
|
---|
36 | [Sources.common]
|
---|
37 | VBoxConsole.c
|
---|
38 | [Packages]
|
---|
39 | VBoxPkg/VBoxPkg.dec
|
---|
40 | MdePkg/MdePkg.dec
|
---|
41 | MdeModulePkg/MdeModulePkg.dec
|
---|
42 |
|
---|
43 |
|
---|
44 | [LibraryClasses]
|
---|
45 | BaseLib
|
---|
46 | MemoryAllocationLib
|
---|
47 | UefiBootServicesTableLib
|
---|
48 | UefiDriverEntryPoint
|
---|
49 | UefiRuntimeServicesTableLib
|
---|
50 | BaseMemoryLib
|
---|
51 | DebugLib
|
---|
52 | HiiLib
|
---|
53 | PrintLib
|
---|
54 |
|
---|
55 | [Guids]
|
---|
56 | gEfiEventExitBootServicesGuid
|
---|
57 | [Protocols]
|
---|
58 | gEfiSimpleTextOutProtocolGuid ## CONSUMES
|
---|
59 | gEfiVariableArchProtocolGuid ## CONSUMES
|
---|
60 | gEfiGraphicsOutputProtocolGuid
|
---|
61 | gEfiUgaDrawProtocolGuid
|
---|
62 |
|
---|
63 |
|
---|
64 | [Depex]
|
---|
65 | gEfiSimpleTextOutProtocolGuid AND gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
|
---|
66 |
|
---|