diff options
author | Eric Dong <eric.dong@intel.com> | 2015-05-27 02:25:48 +0000 |
---|---|---|
committer | ydong10 <ydong10@Edk2> | 2015-05-27 02:25:48 +0000 |
commit | 366430c71558f24400bfdcd6258079d8640175ac (patch) | |
tree | a9d534e0031f1a0c0aa77fbda5b0a6e5cf278272 /BaseTools/Source/C/VfrCompile/VfrFormPkg.h | |
parent | edf289685b9244d27602addd9ea5d933fade839f (diff) | |
download | edk2-platforms-366430c71558f24400bfdcd6258079d8640175ac.tar.xz |
BaseTools: Add reconnect request flag for question.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17514 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Source/C/VfrCompile/VfrFormPkg.h')
-rw-r--r-- | BaseTools/Source/C/VfrCompile/VfrFormPkg.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/BaseTools/Source/C/VfrCompile/VfrFormPkg.h b/BaseTools/Source/C/VfrCompile/VfrFormPkg.h index d2ff72c155..84300a7584 100644 --- a/BaseTools/Source/C/VfrCompile/VfrFormPkg.h +++ b/BaseTools/Source/C/VfrCompile/VfrFormPkg.h @@ -422,7 +422,11 @@ public: if (_FLAG_TEST_AND_CLEAR (Flags, EFI_IFR_FLAG_RESET_REQUIRED)) {
mHeader->Flags |= EFI_IFR_FLAG_RESET_REQUIRED;
}
-
+
+ if (_FLAG_TEST_AND_CLEAR (Flags, EFI_IFR_FLAG_RECONNECT_REQUIRED)) {
+ mHeader->Flags |= EFI_IFR_FLAG_RECONNECT_REQUIRED;
+ }
+
//
// Set LateCheck Flag to compatible for framework flag
// but it uses 0x20 as its flag, if in the future UEFI may take this flag
|