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