1 | # $Id: VBoxIdeBusDxe.inf 33027 2010-10-11 06:17:12Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # VBoxIdeBusDxe.inf
|
---|
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 | #/** @file
|
---|
19 | # Component description file for IdeBus module.
|
---|
20 | #
|
---|
21 | # IDE bus driver. This driver will enumerate IDE device and export the blockIo
|
---|
22 | # protocol for every device.
|
---|
23 | # Copyright (c) 2006 - 2009, Intel Corporation
|
---|
24 | #
|
---|
25 | # All rights reserved. This program and the accompanying materials
|
---|
26 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
27 | # which accompanies this distribution. The full text of the license may be found at
|
---|
28 | # http://opensource.org/licenses/bsd-license.php
|
---|
29 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
30 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
31 | #
|
---|
32 | #
|
---|
33 | #**/
|
---|
34 |
|
---|
35 | [Defines]
|
---|
36 | INF_VERSION = 0x00010005
|
---|
37 | BASE_NAME = IdeBusDxe
|
---|
38 | FILE_GUID = 2f709c46-d2e7-11df-ad38-080027a4ca0d
|
---|
39 | MODULE_TYPE = UEFI_DRIVER
|
---|
40 | VERSION_STRING = 1.0
|
---|
41 | EFI_SPECIFICATION_VERSION = 0x00020000
|
---|
42 | ENTRY_POINT = InitializeIdeBus
|
---|
43 |
|
---|
44 | #
|
---|
45 | # The following information is for reference only and not required by the build tools.
|
---|
46 | #
|
---|
47 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
48 | #
|
---|
49 | # DRIVER_BINDING = gIDEBusDriverBinding
|
---|
50 | # COMPONENT_NAME = gIDEBusComponentName
|
---|
51 | # COMPONENT_NAME2 = gIDEBusComponentName2
|
---|
52 | # Variable Guid C Name: gConfigurationGuid Variable Name: L"Configuration"
|
---|
53 | #
|
---|
54 | #
|
---|
55 |
|
---|
56 | [Sources.common]
|
---|
57 | DriverDiagnostics.c
|
---|
58 | DriverConfiguration.c
|
---|
59 | ComponentName.h
|
---|
60 | ComponentName.c
|
---|
61 | Atapi.c
|
---|
62 | Ata.c
|
---|
63 | Ide.c
|
---|
64 | IdeBus.c
|
---|
65 | IdeData.h
|
---|
66 | Ide.h
|
---|
67 | IdeBus.h
|
---|
68 |
|
---|
69 |
|
---|
70 | [Packages]
|
---|
71 | MdePkg/MdePkg.dec
|
---|
72 | VBoxPkg/VBoxPkg.dec
|
---|
73 | IntelFrameworkPkg/IntelFrameworkPkg.dec
|
---|
74 | IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
---|
75 |
|
---|
76 |
|
---|
77 | [LibraryClasses]
|
---|
78 | DevicePathLib
|
---|
79 | UefiRuntimeServicesTableLib
|
---|
80 | UefiBootServicesTableLib
|
---|
81 | PerformanceLib
|
---|
82 | MemoryAllocationLib
|
---|
83 | ReportStatusCodeLib
|
---|
84 | BaseMemoryLib
|
---|
85 | UefiLib
|
---|
86 | BaseLib
|
---|
87 | UefiDriverEntryPoint
|
---|
88 | DebugLib
|
---|
89 |
|
---|
90 |
|
---|
91 | [Guids]
|
---|
92 | gEfiDiskInfoIdeInterfaceGuid # CONSUMES ## GUID
|
---|
93 | gEfiEventExitBootServicesGuid # CONSUMES ## Event
|
---|
94 |
|
---|
95 |
|
---|
96 | [Protocols]
|
---|
97 | gEfiDiskInfoProtocolGuid # BY_START
|
---|
98 | gEfiBlockIoProtocolGuid # BY_START
|
---|
99 | gEfiIdeControllerInitProtocolGuid # TO_START
|
---|
100 | gEfiPciIoProtocolGuid # TO_START
|
---|
101 | gEfiDevicePathProtocolGuid # TO_START
|
---|
102 |
|
---|
103 |
|
---|