]>
Commit | Line | Data |
---|---|---|
d4a78455 | 1 | ## @file\r |
2 | # NULL Library class that reads Debug Mask variable and if it exists makes a\r | |
3 | # HOB that contains the debug mask.\r | |
4 | #\r | |
5 | # Copyright (c) 2011, Apple, Inc. All rights reserved.<BR>\r | |
6036e94d | 6 | # Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved.<BR>\r |
d4a78455 | 7 | #\r |
8 | # This program and the accompanying materials\r | |
9 | # are licensed and made available under the terms and conditions of the BSD License\r | |
10 | # which accompanies this distribution. The full text of the license may be found at\r | |
11 | # http://opensource.org/licenses/bsd-license.php\r | |
12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
14 | #\r | |
15 | #\r | |
16 | ##\r | |
17 | \r | |
18 | [Defines]\r | |
19 | INF_VERSION = 0x00010005\r | |
20 | BASE_NAME = PeiDebugPrintHobLib\r | |
6036e94d | 21 | MODULE_UNI_FILE = PeiDebugPrintHobLib.uni\r |
d4a78455 | 22 | FILE_GUID = EB0BDD73-DABB-E74B-BF51-62DC1DA521E1\r |
23 | MODULE_TYPE = PEIM\r | |
24 | VERSION_STRING = 1.0\r | |
25 | LIBRARY_CLASS = NULL|PEIM\r | |
26 | CONSTRUCTOR = PeiDebugPrintHobLibConstructor\r | |
27 | \r | |
28 | \r | |
29 | [Sources]\r | |
30 | PeiDebugPrintHobLib.c\r | |
31 | \r | |
32 | \r | |
33 | [Packages]\r | |
34 | MdePkg/MdePkg.dec\r | |
35 | MdeModulePkg/MdeModulePkg.dec\r | |
36 | \r | |
37 | [LibraryClasses]\r | |
38 | PeiServicesLib\r | |
39 | DebugLib\r | |
40 | \r | |
41 | [Ppis]\r | |
6036e94d | 42 | gEfiPeiReadOnlyVariable2PpiGuid ## CONSUMES\r |
d4a78455 | 43 | \r |
44 | [Guids]\r | |
6036e94d SZ |
45 | ## SOMETIMES_CONSUMES ## Variable:L"EFIDebug"\r |
46 | ## SOMETIMES_PRODUCES ## HOB\r | |
47 | gEfiGenericVariableGuid\r | |
d4a78455 | 48 | \r |
49 | [Depex]\r | |
50 | gEfiPeiReadOnlyVariable2PpiGuid |