diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-03-22 13:34:13 +0000 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-03-22 15:32:16 +0000 |
commit | 2edc20c468634b0264cbc4da42be2b70b31a8031 (patch) | |
tree | 9ae2e83ec1ad47065a2e309d636695257b87108b /ShellPkg/Application | |
parent | b88aa9c3d30d00f42291525ee3dd0b6d91a6c481 (diff) | |
download | edk2-2edc20c468634b0264cbc4da42be2b70b31a8031.tar.gz edk2-2edc20c468634b0264cbc4da42be2b70b31a8031.tar.bz2 edk2-2edc20c468634b0264cbc4da42be2b70b31a8031.zip |
ShellPkg: add GUID declaration for FILE_GUID of UEFI Shell app to package
In QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager.c,
there is a definition of mUefiShellFileGuid which is a constant reference
to the FILE_GUID as defined in ShellPkg/Application/Shell/Shell.inf.
To prevent the need for duplicating it to other modules, promote it to
a proper global GUID, and add it to the ShellPkg.dec package declaration.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Diffstat (limited to 'ShellPkg/Application')
-rw-r--r-- | ShellPkg/Application/Shell/Shell.inf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Application/Shell/Shell.inf b/ShellPkg/Application/Shell/Shell.inf index a1b6a24e87..102a12e9a4 100644 --- a/ShellPkg/Application/Shell/Shell.inf +++ b/ShellPkg/Application/Shell/Shell.inf @@ -17,7 +17,7 @@ [Defines]
INF_VERSION = 0x00010006
BASE_NAME = Shell
- FILE_GUID = 7C04A583-9E3E-4f1c-AD65-E05268D0B4D1
+ FILE_GUID = 7C04A583-9E3E-4f1c-AD65-E05268D0B4D1 # gUefiShellFileGuid
MODULE_TYPE = UEFI_APPLICATION
VERSION_STRING = 1.0
ENTRY_POINT = UefiMain
|