diff options
author | Dandan Bi <dandan.bi@intel.com> | 2016-03-01 14:36:46 +0800 |
---|---|---|
committer | Feng Tian <feng.tian@intel.com> | 2016-03-02 15:16:45 +0800 |
commit | 1b96026e14c2d6aba89e908d3f3e3aa54b6bdbe3 (patch) | |
tree | 27f871ac3e5619492b91b37c0d9452dad4802552 /MdeModulePkg | |
parent | cf23c02ae134d3031486be315df7be641dd20d83 (diff) | |
download | edk2-1b96026e14c2d6aba89e908d3f3e3aa54b6bdbe3.tar.gz edk2-1b96026e14c2d6aba89e908d3f3e3aa54b6bdbe3.tar.bz2 edk2-1b96026e14c2d6aba89e908d3f3e3aa54b6bdbe3.zip |
MdeModulePkg: FileExplorerLib: Modify the EFI_FILE_EXPLORE_FORMSET_GUID
Currently the EFI_FILE_EXPLORE_FORMSET_GUID value in BdsDxe in
IntelFrameworkModulePkg is same with the GUID VALUE in FileExplorerLib.
This patch is to modify the EFI_FILE_EXPLORE_FORMSET_GUID in
FileExplorerLib to avoid potential issue.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Library/FileExplorerLib/FormGuid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Library/FileExplorerLib/FormGuid.h b/MdeModulePkg/Library/FileExplorerLib/FormGuid.h index 011ae228c9..d0a43a9fd9 100644 --- a/MdeModulePkg/Library/FileExplorerLib/FormGuid.h +++ b/MdeModulePkg/Library/FileExplorerLib/FormGuid.h @@ -1,7 +1,7 @@ /** @file
Formset guids, form id and VarStore data structure for File explorer library.
-Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available under
the terms and conditions of the BSD License that accompanies this distribution.
The full text of the license may be found at
@@ -19,7 +19,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #define EFI_FILE_EXPLORE_FORMSET_GUID \
{ \
- 0x1f2d63e1, 0xfebd, 0x4dc7, {0x9c, 0xc5, 0xba, 0x2b, 0x1c, 0xef, 0x9c, 0x5b} \
+ 0xfe561596, 0xe6bf, 0x41a6, {0x83, 0x76, 0xc7, 0x2b, 0x71, 0x98, 0x74, 0xd0} \
}
#define FORM_FILE_EXPLORER_ID 0x1000
|