1 | ## @file
|
---|
2 | # Provides shell level 3 functions
|
---|
3 | # Note that the interactive versions of the time, date, and timezone functions are handled in the level 2 library.
|
---|
4 | #
|
---|
5 | # Copyright (c) 2009-2011, 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 = UefiShellLevel3CommandsLib
|
---|
20 | FILE_GUID = 71374B42-85D7-4753-AD17-AA84C3A0EB93
|
---|
21 | MODULE_TYPE = UEFI_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | LIBRARY_CLASS = NULL|UEFI_APPLICATION UEFI_DRIVER
|
---|
24 | CONSTRUCTOR = ShellLevel3CommandsLibConstructor
|
---|
25 | DESTRUCTOR = ShellLevel3CommandsLibDestructor
|
---|
26 |
|
---|
27 | [Sources.common]
|
---|
28 | # note that time, timezone, and date are part of the level 2 library
|
---|
29 | Type.c
|
---|
30 | Touch.c
|
---|
31 | Ver.c
|
---|
32 | UefiShellLevel3CommandsLib.uni
|
---|
33 | UefiShellLevel3CommandsLib.c
|
---|
34 | UefiShellLevel3CommandsLib.h
|
---|
35 | Cls.c
|
---|
36 | Alias.c
|
---|
37 | Echo.c
|
---|
38 | Pause.c
|
---|
39 | GetMtc.c
|
---|
40 | Help.c
|
---|
41 |
|
---|
42 |
|
---|
43 | [Packages]
|
---|
44 | MdePkg/MdePkg.dec
|
---|
45 | ShellPkg/ShellPkg.dec
|
---|
46 | MdeModulePkg/MdeModulePkg.dec
|
---|
47 | VBoxPkg/VBoxPkg.dec
|
---|
48 |
|
---|
49 | [LibraryClasses]
|
---|
50 | MemoryAllocationLib
|
---|
51 | BaseLib
|
---|
52 | BaseMemoryLib
|
---|
53 | DebugLib
|
---|
54 | ShellCommandLib
|
---|
55 | ShellLib
|
---|
56 | UefiLib
|
---|
57 | UefiRuntimeServicesTableLib
|
---|
58 | UefiBootServicesTableLib
|
---|
59 | PcdLib
|
---|
60 | HiiLib
|
---|
61 | FileHandleLib
|
---|
62 |
|
---|
63 | [Guids]
|
---|
64 | gEfiFileInfoGuid
|
---|
65 | gShellLevel3HiiGuid
|
---|
66 |
|
---|
67 | [Pcd.common]
|
---|
68 | gEfiShellPkgTokenSpaceGuid.PcdShellSupportLevel
|
---|
69 | gEfiShellPkgTokenSpaceGuid.PcdShellFileOperationSize
|
---|
70 |
|
---|