1 | # $Id$
|
---|
2 | ## @file
|
---|
3 | # VBoxIdeControllerDxe.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 | #
|
---|
19 | # This code is based on:
|
---|
20 | #
|
---|
21 | #/** @file
|
---|
22 | #
|
---|
23 | # Component description file for the IDE Controller Init module.
|
---|
24 | #
|
---|
25 | # Copyright (c) 2008, Intel Corporation. <BR>
|
---|
26 | # All rights reserved. This program and the accompanying materials
|
---|
27 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
28 | # which accompanies this distribution. The full text of the license may be found at
|
---|
29 | # http://opensource.org/licenses/bsd-license.php
|
---|
30 | #
|
---|
31 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
32 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
33 | #
|
---|
34 | #**/
|
---|
35 |
|
---|
36 | [Defines]
|
---|
37 | INF_VERSION = 0x00010005
|
---|
38 | BASE_NAME = IdeController
|
---|
39 | FILE_GUID = de85315c-d4da-11df-8015-080027a4ca0d
|
---|
40 | MODULE_TYPE = UEFI_DRIVER
|
---|
41 | VERSION_STRING = 1.0
|
---|
42 | EDK_RELEASE_VERSION = 0x00020000
|
---|
43 | EFI_SPECIFICATION_VERSION = 0x00020000
|
---|
44 | ENTRY_POINT = InitializeIdeControllerDriver
|
---|
45 |
|
---|
46 | #
|
---|
47 | # The following information is for reference only and not required by the build tools.
|
---|
48 | #
|
---|
49 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
50 | #
|
---|
51 |
|
---|
52 | [Sources.common]
|
---|
53 | ComponentName.c
|
---|
54 | IdeController.c
|
---|
55 | IdeController.h
|
---|
56 |
|
---|
57 | [Packages]
|
---|
58 | VBoxPkg/VBoxPkg.dec
|
---|
59 | MdePkg/MdePkg.dec
|
---|
60 | IntelFrameworkPkg/IntelFrameworkPkg.dec
|
---|
61 |
|
---|
62 | [LibraryClasses]
|
---|
63 | UefiDriverEntryPoint
|
---|
64 | DebugLib
|
---|
65 | UefiLib
|
---|
66 | BaseLib
|
---|
67 | BaseMemoryLib
|
---|
68 | MemoryAllocationLib
|
---|
69 | UefiBootServicesTableLib
|
---|
70 |
|
---|
71 | [Protocols]
|
---|
72 | gEfiPciIoProtocolGuid
|
---|
73 | gEfiIdeControllerInitProtocolGuid
|
---|