1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync## @file
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync# Provides shell driver1 profile functions
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync#
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync# Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync#
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync# This program and the accompanying materials
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync# are licensed and made available under the terms and conditions of the BSD License
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync# which accompanies this distribution. The full text of the license may be found at
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync# http://opensource.org/licenses/bsd-license.php
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync#
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync#
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync##
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync[Defines]
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync INF_VERSION = 0x00010006
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync BASE_NAME = UefiShellDriver1CommandsLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync FILE_GUID = 313D3674-3ED4-48fd-BF97-7DB35D4190D1
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync MODULE_TYPE = UEFI_DRIVER
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync VERSION_STRING = 1.0
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync LIBRARY_CLASS = NULL|UEFI_APPLICATION UEFI_DRIVER
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync CONSTRUCTOR = UefiShellDriver1CommandsLibConstructor
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync DESTRUCTOR = UefiShellDriver1CommandsLibDestructor
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync[Sources]
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync Connect.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync Devices.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync OpenInfo.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync Disconnect.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync Reconnect.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync Unload.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync DrvDiag.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync Dh.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync Drivers.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync DevTree.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync DrvCfg.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync UefiShellDriver1CommandsLib.c
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync UefiShellDriver1CommandsLib.h
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync UefiShellDriver1CommandsLib.uni
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync[Packages]
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync MdePkg/MdePkg.dec
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync ShellPkg/ShellPkg.dec
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync MdeModulePkg/MdeModulePkg.dec
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync[LibraryClasses]
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync MemoryAllocationLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync BaseLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync BaseMemoryLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync DebugLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync ShellCommandLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync ShellLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync UefiLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync UefiRuntimeServicesTableLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync UefiBootServicesTableLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync SortLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync PrintLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync PeCoffGetEntryPointLib
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync[Pcd]
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gEfiShellPkgTokenSpaceGuid.PcdShellProfileMask # ALWAYS_CONSUMED
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync[Protocols]
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gEfiDriverHealthProtocolGuid # ALWAYS_CONSUMED
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gEfiDriverFamilyOverrideProtocolGuid # ALWAYS_CONSUMED
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gEfiHiiConfigAccessProtocolGuid # ALWAYS_CONSUMED
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gEfiHiiDatabaseProtocolGuid # ALWAYS_CONSUMED
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync[Guids]
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gEfiGlobalVariableGuid # ALWAYS_CONSUMED
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gEfiConsoleInDeviceGuid # ALWAYS_CONSUMED
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gEfiConsoleOutDeviceGuid # ALWAYS_CONSUMED
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync gShellDriver1HiiGuid ## PRODUCES
1eda04de692c4c416332941e87bab4cc8fc45a18vboxsync