1 | ## @file
|
---|
2 | # Runtime DXE part corresponding to StandaloneMM variable module.
|
---|
3 | #
|
---|
4 | # This module installs variable arch protocol and variable write arch protocol
|
---|
5 | # to StandaloneMM runtime variable service.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2019 - 2021, Arm Ltd. All rights reserved.
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x0001001A
|
---|
14 | BASE_NAME = VariableMmDependency
|
---|
15 | FILE_GUID = 64BC4129-778E-4867-BA07-13999A4DEC3F
|
---|
16 | MODULE_TYPE = DXE_DRIVER
|
---|
17 | LIBRARY_CLASS = NULL
|
---|
18 | CONSTRUCTOR = VariableMmDependencyLibConstructor
|
---|
19 |
|
---|
20 | #
|
---|
21 | # The following information is for reference only and not required by the build tools.
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = AARCH64
|
---|
24 | #
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | VariableMmDependency.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [Protocols]
|
---|
35 | gEfiSmmVariableProtocolGuid ## PRODUCES
|
---|
36 |
|
---|
37 | [Guids]
|
---|
38 | gSmmVariableWriteGuid ## PRODUCES ## GUID # Install protocol
|
---|
39 |
|
---|
40 | [Depex]
|
---|
41 | TRUE
|
---|