1## @file 2# Provides interface to shell functionality for shell commands and applications. 3# 4# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> 5# Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved. <BR> 6# 7# This program and the accompanying materials 8# are licensed and made available under the terms and conditions of the BSD License 9# which accompanies this distribution. The full text of the license may be found at 10# http://opensource.org/licenses/bsd-license.php 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14# 15## 16 17[Defines] 18 INF_VERSION = 0x00010006 19 BASE_NAME = UefiShellLib 20 FILE_GUID = 449D0F00-2148-4a43-9836-F10B3980ECF5 21 MODULE_TYPE = UEFI_DRIVER 22 VERSION_STRING = 1.1 23 LIBRARY_CLASS = ShellLib|UEFI_APPLICATION UEFI_DRIVER DXE_RUNTIME_DRIVER DXE_DRIVER 24 CONSTRUCTOR = ShellLibConstructor 25 DESTRUCTOR = ShellLibDestructor 26 27# 28# VALID_ARCHITECTURES = IA32 X64 IPF EBC 29# 30 31[Sources.common] 32 UefiShellLib.c 33 UefiShellLib.h 34 35[Packages] 36 MdePkg/MdePkg.dec 37 MdeModulePkg/MdeModulePkg.dec 38 ShellPkg/ShellPkg.dec 39 40[LibraryClasses] 41 UefiBootServicesTableLib 42 MemoryAllocationLib 43 DevicePathLib 44 BaseLib 45 BaseMemoryLib 46 DebugLib 47 FileHandleLib 48 PrintLib 49 UefiLib 50 HiiLib 51 SortLib 52 53[Protocols] 54 gEfiSimpleFileSystemProtocolGuid ## SOMETIMES_CONSUMES 55 gEfiUnicodeCollation2ProtocolGuid ## CONSUMES 56 57 # shell 2.0 58 gEfiShellProtocolGuid ## SOMETIMES_CONSUMES 59 gEfiShellParametersProtocolGuid ## SOMETIMES_CONSUMES 60 61 # 'old' shell 62 gEfiShellEnvironment2Guid ## SOMETIMES_CONSUMES 63 gEfiShellInterfaceGuid ## SOMETIMES_CONSUMES 64 65[Guids] 66 gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## GUID 67 gEfiShellEnvironment2ExtGuid ## SOMETIMES_CONSUMES ## GUID 68 69[Pcd.common] 70 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize ## CONSUMES 71 gEfiShellPkgTokenSpaceGuid.PcdShellPrintBufferSize ## CONSUMES 72