udk2010.up2.shell initial release.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10874 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
## @file ShellPkg.dec
|
||||
## @file ShellPkg.dec
|
||||
#
|
||||
# This Package provides all definitions for EFI and UEFI Shell
|
||||
#
|
||||
# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2009, Intel Corporation.
|
||||
#
|
||||
# All rights reserved.
|
||||
# This program and the accompanying materials are licensed and made available under
|
||||
# the terms and conditions of the BSD License which accompanies this distribution.
|
||||
# The full text of the license may be found at
|
||||
@@ -19,37 +20,40 @@
|
||||
DEC_SPECIFICATION = 0x00010005
|
||||
PACKAGE_NAME = ShellPkg
|
||||
PACKAGE_GUID = 9FB7587C-93F7-40a7-9C04-FD7BA94EE646
|
||||
PACKAGE_VERSION = 0.2
|
||||
PACKAGE_VERSION = 0.40
|
||||
|
||||
|
||||
[Includes]
|
||||
[Includes.common]
|
||||
Include
|
||||
|
||||
[LibraryClasses]
|
||||
## @libraryclass Provides most Shell APIs.
|
||||
# Only available for Shell applications
|
||||
##
|
||||
[LibraryClasses.common]
|
||||
## @libraryclass Provides most Shell APIs. Only available for Shell applications
|
||||
ShellLib|Include/Library/ShellLib.h
|
||||
|
||||
## @libraryclass provides EFI_FILE_HANDLE services
|
||||
## used by Shell and ShellLib
|
||||
##
|
||||
## @libraryclass Provides shell internal support Only available for shell internal commands
|
||||
ShellCommandLib|Include/Library/ShellCommandLib.h
|
||||
|
||||
## @libraryclass provides EFI_FILE_HANDLE services used by Shell and ShellLib
|
||||
FileHandleLib|Include/Library/FileHandleLib.h
|
||||
|
||||
|
||||
## @libraryclass Allows for a shell application to have a C style entry point
|
||||
##
|
||||
ShellCEntryLib|Include/Library/ShellCEntryLib.h
|
||||
|
||||
## @libraryclass Provides sorting functions
|
||||
##
|
||||
SortLib|Include/Library/Sortlib.h
|
||||
SortLib|Include/Library/SortLib.h
|
||||
|
||||
## @libraryclass Provides advanced parsing functions
|
||||
HandleParsingLib|Include/Library/HandleParsingLib.h
|
||||
|
||||
[Guids]
|
||||
[Guids.common]
|
||||
gEfiShellEnvironment2ExtGuid = {0xd2c18636, 0x40e5, 0x4eb5, {0xa3, 0x1b, 0x36, 0x69, 0x5f, 0xd4, 0x2c, 0x87}}
|
||||
gEfiShellPkgTokenSpaceGuid = {0x171e9188, 0x31d3, 0x40f5, {0xb1, 0x0c, 0x53, 0x9b, 0x2d, 0xb9, 0x40, 0xcd}}
|
||||
gEfiShellPkgTokenSpaceGuid = {0x171e9188, 0x31d3, 0x40f5, {0xb1, 0x0c, 0x53, 0x9b, 0x2d, 0xb9, 0x40, 0xcd}}
|
||||
gShellVariableGuid = {0x158def5a, 0xf656, 0x419c, {0xb0, 0x27, 0x7a, 0x31, 0x92, 0xc0, 0x79, 0xd2}}
|
||||
gShellMapGuid = {0x51271e13, 0x7de3, 0x43af, {0x8b, 0xc2, 0x71, 0xad, 0x3b, 0x82, 0x43, 0x25}}
|
||||
gShellAliasGuid = {0x0053d9d6, 0x2659, 0x4599, {0xa2, 0x6b, 0xef, 0x45, 0x36, 0xe6, 0x31, 0xa9}}
|
||||
|
||||
[Protocols]
|
||||
|
||||
[Protocols.common]
|
||||
gEfiShellProtocolGuid = {0x6302d008, 0x7f9b, 0x4f30, {0x87, 0xac, 0x60, 0xc9, 0xfe, 0xf5, 0xda, 0x4e}}
|
||||
gEfiShellParametersProtocolGuid = {0x752f3136, 0x4e16, 0x4fdc, {0xa2, 0x2a, 0xe5, 0xf4, 0x68, 0x12, 0xf4, 0xca}}
|
||||
gEfiShellEnvironment2Guid = {0x47c7b221, 0xc42a, 0x11d2, {0x8e, 0x57, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b}}
|
||||
@@ -57,10 +61,54 @@
|
||||
|
||||
[PcdsFixedAtBuild]
|
||||
## This flag is used to control initialization of the shell library
|
||||
## This should be FALSE for compiling the shell application itself only.
|
||||
# This should be FALSE for compiling the shell application itself only.
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|TRUE|BOOLEAN|0x00000005
|
||||
|
||||
## This is the max buffer for ShellLib printings.
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellPrintBufferSize|8000|UINT16|0x0000000C
|
||||
## This is the max buffer for ShellLib, FileHandleLib, and internal Shell printings.
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellPrintBufferSize|16000|UINT16|0x0000000C
|
||||
|
||||
## This flag is used to control the commands available in the shell
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellSupportLevel|3|UINT8|0x00000001
|
||||
|
||||
## This flag is used to control the profiles available in the shell
|
||||
# don't forget to update the text file if you change this.
|
||||
# bit 0 = Drivers1
|
||||
# bit 1 = Debug1
|
||||
# bit 2 = Install1
|
||||
# bit 3 = Network1
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellProfileMask|0xFF|UINT8|0x0000000D
|
||||
|
||||
## This is the character count for allocation for consistent mappings
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellMapNameLength|50|UINT8|0x00000009
|
||||
|
||||
## This determins how many bytes are read out of files at a time for file operations (type, copy, etc...)
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellFileOperationSize|1000|UINT16|0x0000000A
|
||||
|
||||
[PcdsFeatureFlag]
|
||||
## This flag is used to control whether the shell includes NT32 platform Guids
|
||||
# and thereby prevents dependancy on that Pkg
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellIncludeNtGuids|TRUE|BOOLEAN|0x0000000E
|
||||
|
||||
## This flag is used to control HII required by the shell
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellRequireHiiPlatform|TRUE|BOOLEAN|0x00000003
|
||||
|
||||
## This flag is used to control HII required by the shell
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellSupportFrameworkHii|FALSE|BOOLEAN|0x00000004
|
||||
|
||||
## This flag forces the shell to present a user console. Allows for earlier debugging of platforms.
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellForceConsole|FALSE|BOOLEAN|0x0000000F
|
||||
|
||||
[PcdsFixedAtBuild,PcdsPatchableInModule,PcdsDynamic]
|
||||
## This flag is used to control the protocols produced by the shell
|
||||
# If TRUE the shell will produce EFI_SHELL_ENVIRONMENT2 and EFI_SHELL_INTERFACE
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellSupportOldProtocols|FALSE|BOOLEAN|0x00000002
|
||||
|
||||
## this flag determins whether Page Break (-b) defaults to on or off in the shell
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellPageBreakDefault|FALSE|BOOLEAN|0x00000006
|
||||
|
||||
## this flag determins whether insert mode for typing is default (FALSE means typeover)
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellInsertModeDefault|TRUE|BOOLEAN|0x00000007
|
||||
|
||||
## this flag determins the default number of screens kept for history log.
|
||||
# the spec defines 3 as the minimum
|
||||
gEfiShellPkgTokenSpaceGuid.PcdShellScreenLogCount|3|UINT8|0x00000008
|
Reference in New Issue
Block a user