1 | ## @file
|
---|
2 | # Provides Shell 'acpiview' command functions
|
---|
3 | #
|
---|
4 | # Copyright (c) 2016 - 2019, ARM Limited. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010019
|
---|
13 | BASE_NAME = UefiShellAcpiViewCommandLib
|
---|
14 | FILE_GUID = FB5B305E-84F5-461F-940D-82D345757AFA
|
---|
15 | MODULE_TYPE = UEFI_APPLICATION
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 | LIBRARY_CLASS = NULL|UEFI_APPLICATION UEFI_DRIVER
|
---|
18 | CONSTRUCTOR = UefiShellAcpiViewCommandLibConstructor
|
---|
19 | DESTRUCTOR = UefiShellAcpiViewCommandLibDestructor
|
---|
20 |
|
---|
21 | [Sources.common]
|
---|
22 | UefiShellAcpiViewCommandLib.uni
|
---|
23 | UefiShellAcpiViewCommandLib.c
|
---|
24 | UefiShellAcpiViewCommandLib.h
|
---|
25 | AcpiParser.h
|
---|
26 | AcpiTableParser.h
|
---|
27 | AcpiView.h
|
---|
28 | AcpiParser.c
|
---|
29 | AcpiTableParser.c
|
---|
30 | AcpiView.c
|
---|
31 | Parsers/Bgrt/BgrtParser.c
|
---|
32 | Parsers/Dbg2/Dbg2Parser.c
|
---|
33 | Parsers/Dsdt/DsdtParser.c
|
---|
34 | Parsers/Fadt/FadtParser.c
|
---|
35 | Parsers/Gtdt/GtdtParser.c
|
---|
36 | Parsers/Iort/IortParser.c
|
---|
37 | Parsers/Madt/MadtParser.c
|
---|
38 | Parsers/Mcfg/McfgParser.c
|
---|
39 | Parsers/Pptt/PpttParser.c
|
---|
40 | Parsers/Rsdp/RsdpParser.c
|
---|
41 | Parsers/Slit/SlitParser.c
|
---|
42 | Parsers/Spcr/SpcrParser.c
|
---|
43 | Parsers/Srat/SratParser.c
|
---|
44 | Parsers/Ssdt/SsdtParser.c
|
---|
45 | Parsers/Xsdt/XsdtParser.c
|
---|
46 | Parsers/Madt/MadtParser.h
|
---|
47 | Parsers/Pptt/PpttParser.h
|
---|
48 |
|
---|
49 | [Packages]
|
---|
50 | MdePkg/MdePkg.dec
|
---|
51 | ShellPkg/ShellPkg.dec
|
---|
52 | MdeModulePkg/MdeModulePkg.dec
|
---|
53 |
|
---|
54 | [LibraryClasses]
|
---|
55 | MemoryAllocationLib
|
---|
56 | BaseLib
|
---|
57 | BaseMemoryLib
|
---|
58 | DebugLib
|
---|
59 | ShellCommandLib
|
---|
60 | ShellLib
|
---|
61 | UefiLib
|
---|
62 | UefiRuntimeServicesTableLib
|
---|
63 | UefiBootServicesTableLib
|
---|
64 | PcdLib
|
---|
65 | HiiLib
|
---|
66 | PrintLib
|
---|
67 | FileHandleLib
|
---|
68 |
|
---|
69 |
|
---|
70 | [FixedPcd]
|
---|
71 | gEfiShellPkgTokenSpaceGuid.PcdShellProfileMask ## CONSUMES
|
---|
72 |
|
---|
73 | [Guids]
|
---|
74 | gShellAcpiViewHiiGuid ## CONSUMES ## HII
|
---|
75 | gEfiAcpiTableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
---|