Vishal Bhoj | 82c8071 | 2015-12-15 21:13:33 +0530 | [diff] [blame^] | 1 | ## @file
|
| 2 | # NULL Library class that reads Debug Mask variable and if it exists makes a
|
| 3 | # HOB that contains the debug mask.
|
| 4 | #
|
| 5 | # Copyright (c) 2011, Apple, Inc. All rights reserved.<BR>
|
| 6 | # Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved.<BR>
|
| 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 = PeiDebugPrintHobLib
|
| 21 | MODULE_UNI_FILE = PeiDebugPrintHobLib.uni
|
| 22 | FILE_GUID = EB0BDD73-DABB-E74B-BF51-62DC1DA521E1
|
| 23 | MODULE_TYPE = PEIM
|
| 24 | VERSION_STRING = 1.0
|
| 25 | LIBRARY_CLASS = NULL|PEIM
|
| 26 | CONSTRUCTOR = PeiDebugPrintHobLibConstructor
|
| 27 |
|
| 28 |
|
| 29 | [Sources]
|
| 30 | PeiDebugPrintHobLib.c
|
| 31 |
|
| 32 |
|
| 33 | [Packages]
|
| 34 | MdePkg/MdePkg.dec
|
| 35 | MdeModulePkg/MdeModulePkg.dec
|
| 36 |
|
| 37 | [LibraryClasses]
|
| 38 | PeiServicesLib
|
| 39 | DebugLib
|
| 40 |
|
| 41 | [Ppis]
|
| 42 | gEfiPeiReadOnlyVariable2PpiGuid ## CONSUMES
|
| 43 |
|
| 44 | [Guids]
|
| 45 | ## SOMETIMES_CONSUMES ## Variable:L"EFIDebug"
|
| 46 | ## SOMETIMES_PRODUCES ## HOB
|
| 47 | gEfiGenericVariableGuid
|
| 48 |
|
| 49 | [Depex]
|
| 50 | gEfiPeiReadOnlyVariable2PpiGuid |