1 | ## @file
|
---|
2 | # This library instance provides the basic network services.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # This program and the accompanying materials
|
---|
6 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
7 | # which accompanies this distribution. The full text of the license may be found at
|
---|
8 | # http://opensource.org/licenses/bsd-license.php
|
---|
9 | #
|
---|
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 = 0x00010005
|
---|
18 | BASE_NAME = DxeNetLib
|
---|
19 | MODULE_UNI_FILE = DxeNetLib.uni
|
---|
20 | FILE_GUID = db6dcef3-9f4e-4340-9351-fc35aa8a5888
|
---|
21 | MODULE_TYPE = DXE_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | LIBRARY_CLASS = NetLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
29 | #
|
---|
30 |
|
---|
31 | [Sources]
|
---|
32 | DxeNetLib.c
|
---|
33 | NetBuffer.c
|
---|
34 |
|
---|
35 |
|
---|
36 | [Packages]
|
---|
37 | MdePkg/MdePkg.dec
|
---|
38 | MdeModulePkg/MdeModulePkg.dec
|
---|
39 |
|
---|
40 |
|
---|
41 | [LibraryClasses]
|
---|
42 | BaseLib
|
---|
43 | DebugLib
|
---|
44 | BaseMemoryLib
|
---|
45 | UefiBootServicesTableLib
|
---|
46 | UefiRuntimeServicesTableLib
|
---|
47 | UefiLib
|
---|
48 | MemoryAllocationLib
|
---|
49 | DevicePathLib
|
---|
50 | HiiLib
|
---|
51 | PrintLib
|
---|
52 |
|
---|
53 | [Guids]
|
---|
54 | ## SOMETIMES_PRODUCES ## UNDEFINED # HiiConstructConfigHdr EFI_NIC_IP4_CONFIG_VARIABLE
|
---|
55 | ## UNDEFINED # Device Path Node
|
---|
56 | gEfiNicIp4ConfigVariableGuid
|
---|
57 | gEfiSmbiosTableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
---|
58 |
|
---|
59 | [Protocols]
|
---|
60 | gEfiSimpleNetworkProtocolGuid ## SOMETIMES_CONSUMES
|
---|
61 | gEfiManagedNetworkProtocolGuid ## SOMETIMES_CONSUMES
|
---|
62 | gEfiManagedNetworkServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
|
---|
63 | gEfiComponentNameProtocolGuid ## SOMETIMES_CONSUMES
|
---|
64 | gEfiComponentName2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
65 | gEfiHiiConfigRoutingProtocolGuid ## SOMETIMES_CONSUMES
|
---|
66 | gEfiHiiConfigAccessProtocolGuid ## SOMETIMES_CONSUMES
|
---|
67 |
|
---|