1##  @file
2# Provides shell network2 functions
3#
4# Copyright (c) 2016, 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
16[Defines]
17  INF_VERSION                    = 0x00010006
18  BASE_NAME                      = UefiShellNetwork2CommandsLib
19  FILE_GUID                      = D94E3B82-908E-46bf-A7B9-C7B7F17B1B7D
20  MODULE_TYPE                    = UEFI_APPLICATION
21  VERSION_STRING                 = 1.0
22  LIBRARY_CLASS                  = NULL|UEFI_APPLICATION UEFI_DRIVER
23  CONSTRUCTOR                    = ShellNetwork2CommandsLibConstructor
24  DESTRUCTOR                     = ShellNetwork2CommandsLibDestructor
25
26[Sources.common]
27  UefiShellNetwork2CommandsLib.uni
28  UefiShellNetwork2CommandsLib.c
29  UefiShellNetwork2CommandsLib.h
30  Ping6.c
31  Ifconfig6.c
32
33[Packages]
34  MdePkg/MdePkg.dec
35  ShellPkg/ShellPkg.dec
36  MdeModulePkg/MdeModulePkg.dec
37
38[LibraryClasses]
39  MemoryAllocationLib
40  BaseLib
41  BaseMemoryLib
42  DebugLib
43  ShellCommandLib
44  ShellLib
45  UefiLib
46  UefiRuntimeServicesTableLib
47  UefiBootServicesTableLib
48  PcdLib
49  HiiLib
50  FileHandleLib
51  NetLib
52
53[Pcd]
54  gEfiShellPkgTokenSpaceGuid.PcdShellProfileMask ## CONSUMES
55
56[Protocols]
57  gEfiCpuArchProtocolGuid                       ## CONSUMES
58  gEfiTimerArchProtocolGuid                     ## CONSUMES
59  gEfiIp6ProtocolGuid                           ## SOMETIMES_CONSUMES
60  gEfiIp6ServiceBindingProtocolGuid             ## SOMETIMES_CONSUMES
61  gEfiIp6ConfigProtocolGuid                     ## SOMETIMES_CONSUMES
62
63[Guids]
64  gShellNetwork2HiiGuid                         ## SOMETIMES_CONSUMES ## HII
65