1// /** @file
2// This module is the Runtime DXE part correspond to SMM variable module.
3//
4// It installs variable arch protocol and variable write arch protocol to provide
5// four EFI_RUNTIME_SERVICES: SetVariable, GetVariable, GetNextVariableName and QueryVariableInfo
6// and works with SMM variable module together.
7//
8// Caution: This module requires additional review when modified.
9// This driver will have external input - variable data.
10// This external input must be validated carefully to avoid security issues such as
11// buffer overflow or integer overflow.
12//
13// Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
14//
15// SPDX-License-Identifier: BSD-2-Clause-Patent
16//
17// **/
18
19
20#string STR_MODULE_ABSTRACT             #language en-US "The Runtime DXE part corresponding to the SMM variable module"
21
22#string STR_MODULE_DESCRIPTION          #language en-US "It installs variable arch protocol and variable write arch protocol to provide four EFI_RUNTIME_SERVICES: SetVariable, GetVariable, GetNextVariableName and QueryVariableInfo and works with SMM variable module together."
23
24