1 | // /** @file
|
---|
2 | // This module is the Runtime DXE part corresponding to SMM Fault Tolerant Write (FTW) module.
|
---|
3 | //
|
---|
4 | // It installs FTW protocol and works with SMM FTW module together.
|
---|
5 | // The FTW protocol will not work after End Of Dxe because it will be not safe to expose
|
---|
6 | // the related operations in SMM handler in SMM FTW module. You can use the FTW protocol
|
---|
7 | // before End Of Dxe or use FaultTolerantWriteDxe module instead if you really want to.
|
---|
8 | //
|
---|
9 | // Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
10 | //
|
---|
11 | // SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
12 | //
|
---|
13 | // **/
|
---|
14 |
|
---|
15 |
|
---|
16 | #string STR_MODULE_ABSTRACT #language en-US "The Runtime DXE part corresponding to the SMM Fault Tolerant Write (FTW) module"
|
---|
17 |
|
---|
18 | #string STR_MODULE_DESCRIPTION #language en-US "It installs FTW protocol and works with SMM FTW module together."
|
---|
19 |
|
---|