1## @file 2# Shell application IfConfig6. 3# 4# It is shell application which is used to set and get configurations for the 5# EFI IPv6 network stack. 6# 7# Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 8# 9# This program and the accompanying materials 10# are licensed and made available under the terms and conditions of the BSD License 11# which accompanies this distribution. The full text of the license may be found at 12# http://opensource.org/licenses/bsd-license.php. 13# 14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 16# 17## 18 19[Defines] 20 INF_VERSION = 0x00010006 21 BASE_NAME = IfConfig6 22 FILE_GUID = 6F71926E-60CE-428d-AA58-A3D9FB879429 23 MODULE_TYPE = UEFI_APPLICATION 24 VERSION_STRING = 1.0 25 ENTRY_POINT = IfConfig6Initialize 26 MODULE_UNI_FILE = IfConfig6.uni 27 28# 29# The following information is for reference only and not required by the build tools. 30# 31# VALID_ARCHITECTURES = IA32 X64 IPF 32# 33[Sources] 34 IfConfig6Strings.uni 35 IfConfig6.c 36 IfConfig6.h 37 38[Packages] 39 MdePkg/MdePkg.dec 40 MdeModulePkg/MdeModulePkg.dec 41 ShellPkg/ShellPkg.dec 42 43[LibraryClasses] 44 BaseLib 45 UefiBootServicesTableLib 46 UefiApplicationEntryPoint 47 BaseMemoryLib 48 ShellLib 49 MemoryAllocationLib 50 DebugLib 51 HiiLib 52 NetLib 53 54[Protocols] 55 gEfiIp6ServiceBindingProtocolGuid ## CONSUMES 56 gEfiIp6ConfigProtocolGuid ## CONSUMES 57 58[UserExtensions.TianoCore."ExtraFiles"] 59 IfConfig6Extra.uni 60