1## @file 2# This library instance provides the basic network services. 3# 4# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 5# (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR> 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# 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 = 0x00010005 19 BASE_NAME = DxeNetLib 20 MODULE_UNI_FILE = DxeNetLib.uni 21 FILE_GUID = db6dcef3-9f4e-4340-9351-fc35aa8a5888 22 MODULE_TYPE = DXE_DRIVER 23 VERSION_STRING = 1.0 24 LIBRARY_CLASS = NetLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER 25 26# 27# The following information is for reference only and not required by the build tools. 28# 29# VALID_ARCHITECTURES = IA32 X64 IPF EBC 30# 31 32[Sources] 33 DxeNetLib.c 34 NetBuffer.c 35 36 37[Packages] 38 MdePkg/MdePkg.dec 39 MdeModulePkg/MdeModulePkg.dec 40 41 42[LibraryClasses] 43 BaseLib 44 DebugLib 45 BaseMemoryLib 46 UefiBootServicesTableLib 47 UefiRuntimeServicesTableLib 48 UefiLib 49 MemoryAllocationLib 50 DevicePathLib 51 PrintLib 52 53 54[Guids] 55 gEfiSmbiosTableGuid ## SOMETIMES_CONSUMES ## SystemTable 56 gEfiSmbios3TableGuid ## SOMETIMES_CONSUMES ## SystemTable 57 58 59[Protocols] 60 gEfiSimpleNetworkProtocolGuid ## SOMETIMES_CONSUMES 61 gEfiManagedNetworkProtocolGuid ## SOMETIMES_CONSUMES 62 gEfiManagedNetworkServiceBindingProtocolGuid ## SOMETIMES_CONSUMES 63 gEfiIp4Config2ProtocolGuid ## SOMETIMES_CONSUMES 64 gEfiComponentNameProtocolGuid ## SOMETIMES_CONSUMES 65 gEfiComponentName2ProtocolGuid ## SOMETIMES_CONSUMES 66