90b8b0ec |
1 | #/** @file\r |
2 | # 8259 Interrupt Controller driver\r |
3 | #\r |
ae6a37f0 |
4 | # Copyright (c) 2005 - 2009, Intel Corporation \r |
1166d068 |
5 | # All rights reserved. This program and the accompanying materials \r |
6 | # are licensed and made available under the terms and conditions of the BSD License \r |
7 | # which accompanies this distribution. The full text of the license may be found at \r |
8 | # http://opensource.org/licenses/bsd-license.php \r |
9 | # \r |
10 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r |
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r |
12 | #\r |
90b8b0ec |
13 | #**/\r |
1166d068 |
14 | \r |
15 | [Defines]\r |
16 | INF_VERSION = 0x00010005\r |
17 | BASE_NAME = Legacy8259\r |
18 | FILE_GUID = 79CA4208-BBA1-4a9a-8456-E1E66A81484E\r |
19 | MODULE_TYPE = DXE_DRIVER\r |
20 | VERSION_STRING = 1.0\r |
21 | EDK_RELEASE_VERSION = 0x00020000\r |
22 | EFI_SPECIFICATION_VERSION = 0x00020000\r |
23 | \r |
24 | ENTRY_POINT = Install8259\r |
25 | \r |
26 | [Packages]\r |
27 | MdePkg/MdePkg.dec\r |
28 | IntelFrameworkPkg/IntelFrameworkPkg.dec\r |
29 | IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec\r |
30 | \r |
31 | [LibraryClasses]\r |
32 | UefiBootServicesTableLib\r |
33 | DebugLib\r |
34 | UefiDriverEntryPoint\r |
8be701c3 |
35 | IoLib\r |
1166d068 |
36 | \r |
37 | [Sources.common]\r |
38 | 8259.c\r |
39 | 8259.h\r |
40 | \r |
41 | [Protocols]\r |
90b8b0ec |
42 | gEfiLegacy8259ProtocolGuid # PROTOCOL ALWAYS_PRODUCED\r |
ae6a37f0 |
43 | gEfiPciIoProtocolGuid\r |
1166d068 |
44 | \r |
45 | [Depex]\r |
90b8b0ec |
46 | TRUE\r |
47 | \r |