2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# This library instance provides the basic network services.
|
2010-02-24 01:21:16 +01:00
|
|
|
#
|
2014-08-28 08:34:06 +02:00
|
|
|
# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
2015-09-30 03:06:57 +02:00
|
|
|
# (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
|
2014-08-28 08:34:06 +02:00
|
|
|
# This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2010-02-24 01:21:16 +01:00
|
|
|
#
|
2014-08-28 08:34:06 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2010-02-24 01:21:16 +01:00
|
|
|
#
|
|
|
|
##
|
2009-01-13 09:48:19 +01:00
|
|
|
|
2007-07-23 11:17:39 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2007-08-23 04:19:41 +02:00
|
|
|
BASE_NAME = DxeNetLib
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = DxeNetLib.uni
|
2007-07-23 11:17:39 +02:00
|
|
|
FILE_GUID = db6dcef3-9f4e-4340-9351-fc35aa8a5888
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
LIBRARY_CLASS = NetLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-23 11:17:39 +02:00
|
|
|
DxeNetLib.c
|
|
|
|
NetBuffer.c
|
2008-02-14 10:40:22 +01:00
|
|
|
|
2007-07-23 11:17:39 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
2008-01-17 06:56:45 +01:00
|
|
|
BaseLib
|
|
|
|
DebugLib
|
|
|
|
BaseMemoryLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiRuntimeServicesTableLib
|
|
|
|
UefiLib
|
|
|
|
MemoryAllocationLib
|
2008-11-11 16:42:40 +01:00
|
|
|
DevicePathLib
|
2009-05-13 11:29:44 +02:00
|
|
|
PrintLib
|
|
|
|
|
2015-07-08 05:08:05 +02:00
|
|
|
|
2010-07-01 03:30:23 +02:00
|
|
|
[Guids]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiSmbiosTableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
2015-09-30 03:06:57 +02:00
|
|
|
gEfiSmbios3TableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
2009-05-13 11:29:44 +02:00
|
|
|
|
2015-07-08 05:08:05 +02:00
|
|
|
|
2007-07-23 11:17:39 +02:00
|
|
|
[Protocols]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiSimpleNetworkProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiManagedNetworkProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiManagedNetworkServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
|
2015-07-08 05:08:05 +02:00
|
|
|
gEfiIp4Config2ProtocolGuid ## SOMETIMES_CONSUMES
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiComponentNameProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiComponentName2ProtocolGuid ## SOMETIMES_CONSUMES
|