• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2# Platfrom BDS driver
3#
4# Do platform action customized by IBV/OEM.
5# Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
6# Portions copyright (c) 2011, Apple Inc. All rights reserved.
7#
8#  This program and the accompanying materials
9#  are licensed and made available under the terms and conditions of the BSD License
10#  which accompanies this distribution. The full text of the license may be found at
11#  http://opensource.org/licenses/bsd-license.php
12#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15#
16##
17
18[Defines]
19  INF_VERSION                    = 0x00010005
20  BASE_NAME                      = EmuBdsLib
21  FILE_GUID                      =  59569181-CBF8-2E44-9C3E-C2AB2F5608E1
22  MODULE_TYPE                    = DXE_DRIVER
23  VERSION_STRING                 = 1.0
24  LIBRARY_CLASS                  = PlatformBdsLib|DXE_DRIVER
25
26
27#
28# The following information is for reference only and not required by the build tools.
29#
30#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
31#
32
33[Sources]
34  BdsPlatform.c
35  PlatformData.c
36  BdsPlatform.h
37
38[Packages]
39  MdePkg/MdePkg.dec
40  MdeModulePkg/MdeModulePkg.dec
41  EmulatorPkg/EmulatorPkg.dec
42  IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
43
44[LibraryClasses]
45  BaseLib
46  MemoryAllocationLib
47  UefiBootServicesTableLib
48  UefiRuntimeServicesTableLib
49  BaseMemoryLib
50  DebugLib
51  PcdLib
52  GenericBdsLib
53  DevicePathLib
54
55
56[Guids]
57  gEmuSystemConfigGuid
58
59[Pcd]
60  gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow
61  gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn
62  gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut
63  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdLogoFile
64
65[Depex]
66  gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
67