1##  @file
2#  Provides shell level 1 functions
3#
4#  Copyright (c) 2009-2015, Intel Corporation. All rights reserved. <BR>
5#
6#  This program and the accompanying materials
7#  are licensed and made available under the terms and conditions of the BSD License
8#  which accompanies this distribution. The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php
10#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#
14##
15[Defines]
16  INF_VERSION                    = 0x00010006
17  BASE_NAME                      = UefiShellLevel1CommandsLib
18  FILE_GUID                      = 50cb6037-1102-47af-b2dd-9944b6eb1abe
19  MODULE_TYPE                    = UEFI_APPLICATION
20  VERSION_STRING                 = 1.0
21  LIBRARY_CLASS                  = NULL|UEFI_APPLICATION UEFI_DRIVER
22  CONSTRUCTOR                    = ShellLevel1CommandsLibConstructor
23  DESTRUCTOR                     = ShellLevel1CommandsLibDestructor
24
25[Sources.common]
26  UefiShellLevel1CommandsLib.c
27  UefiShellLevel1CommandsLib.h
28  UefiShellLevel1CommandsLib.uni
29  Exit.c
30  Goto.c
31  If.c
32  For.c
33  Shift.c
34  Stall.c
35
36[Packages]
37  MdePkg/MdePkg.dec
38  ShellPkg/ShellPkg.dec
39  MdeModulePkg/MdeModulePkg.dec
40
41[LibraryClasses]
42  MemoryAllocationLib
43  BaseLib
44  BaseMemoryLib
45  DebugLib
46  ShellCommandLib
47  ShellLib
48  UefiLib
49  UefiRuntimeServicesTableLib
50  UefiBootServicesTableLib
51  SortLib
52  PrintLib
53
54[Pcd.common]
55  gEfiShellPkgTokenSpaceGuid.PcdShellSupportLevel ## CONSUMES
56
57[Guids]
58  gShellLevel1HiiGuid       ## SOMETIMES_CONSUMES ## HII
59