• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  Module that produces the Framework CPU I/O Protocol using the services of the I/O Library
3#
4#  Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
5#  This program and the accompanying materials
6#  are licensed and made available under the terms and conditions of the BSD License
7#  which accompanies this distribution. The full text of the license may be found at
8#  http://opensource.org/licenses/bsd-license.php
9#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11#
12##
13
14[Defines]
15  INF_VERSION                    = 0x00010005
16  BASE_NAME                      = CpuIoDxe
17  MODULE_UNI_FILE                = CpuIoDxe.uni
18  FILE_GUID                      = BAE7599F-3C6B-43b7-BDF0-9CE07AA91AA6
19  MODULE_TYPE                    = DXE_RUNTIME_DRIVER
20  VERSION_STRING                 = 1.0
21  ENTRY_POINT                    = CpuIoInitialize
22
23#
24# The following information is for reference only and not required by the build tools.
25#
26#  VALID_ARCHITECTURES           = IA32 X64
27#
28
29[Sources]
30  CpuIo.c
31  CpuIo.h
32
33[Packages]
34  MdePkg/MdePkg.dec
35  IntelFrameworkPkg/IntelFrameworkPkg.dec
36
37[LibraryClasses]
38  UefiDriverEntryPoint
39  BaseLib
40  DebugLib
41  IoLib
42  UefiBootServicesTableLib
43
44[Protocols]
45  gEfiCpuIoProtocolGuid                         ## PRODUCES
46
47[Depex]
48  TRUE
49
50[UserExtensions.TianoCore."ExtraFiles"]
51  CpuIoDxeExtra.uni
52