1 | ## @file
|
---|
2 | # This module produces EFI IPv4 Protocol and EFI IPv4 Service Binding Protocol.
|
---|
3 | #
|
---|
4 | # This module produces EFI IPv4 Protocol upon EFI MNP Protocol and EFI ARP Protocol,
|
---|
5 | # to provide basic network IPv4 packet I/O services, which includes support for a
|
---|
6 | # subset of the Internet Control Message Protocol (ICMP) and may include support for
|
---|
7 | # the Internet Group Management Protocol (IGMP).
|
---|
8 | #
|
---|
9 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = Ip4Dxe
|
---|
18 | MODULE_UNI_FILE = Ip4Dxe.uni
|
---|
19 | FILE_GUID = 9FB1A1F3-3B71-4324-B39A-745CBB015FFF
|
---|
20 | MODULE_TYPE = UEFI_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 | ENTRY_POINT = Ip4DriverEntryPoint
|
---|
23 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
29 | #
|
---|
30 | # DRIVER_BINDING = gIp4DriverBinding
|
---|
31 | # COMPONENT_NAME = gIp4ComponentName
|
---|
32 | # COMPONENT_NAME2 = gIp4ComponentName2
|
---|
33 | #
|
---|
34 |
|
---|
35 | [Sources]
|
---|
36 | Ip4Driver.c
|
---|
37 | Ip4Option.h
|
---|
38 | Ip4Route.h
|
---|
39 | Ip4If.c
|
---|
40 | Ip4Igmp.h
|
---|
41 | Ip4Output.c
|
---|
42 | Ip4Icmp.c
|
---|
43 | Ip4Igmp.c
|
---|
44 | Ip4Impl.c
|
---|
45 | Ip4Common.h
|
---|
46 | Ip4Impl.h
|
---|
47 | Ip4Driver.h
|
---|
48 | Ip4Common.c
|
---|
49 | Ip4If.h
|
---|
50 | Ip4Option.c
|
---|
51 | Ip4Output.h
|
---|
52 | ComponentName.c
|
---|
53 | Ip4Input.h
|
---|
54 | Ip4Route.c
|
---|
55 | Ip4Icmp.h
|
---|
56 | Ip4Input.c
|
---|
57 | Ip4Config2Impl.c
|
---|
58 | Ip4Config2Impl.h
|
---|
59 | Ip4Config2.vfr
|
---|
60 | Ip4DxeStrings.uni
|
---|
61 | Ip4NvData.h
|
---|
62 | Ip4Config2Nv.h
|
---|
63 | Ip4Config2Nv.c
|
---|
64 |
|
---|
65 |
|
---|
66 | [Packages]
|
---|
67 | MdePkg/MdePkg.dec
|
---|
68 | MdeModulePkg/MdeModulePkg.dec
|
---|
69 | NetworkPkg/NetworkPkg.dec
|
---|
70 |
|
---|
71 | [LibraryClasses]
|
---|
72 | UefiLib
|
---|
73 | BaseLib
|
---|
74 | UefiBootServicesTableLib
|
---|
75 | UefiDriverEntryPoint
|
---|
76 | UefiRuntimeServicesTableLib
|
---|
77 | DebugLib
|
---|
78 | NetLib
|
---|
79 | DpcLib
|
---|
80 | HiiLib
|
---|
81 | PrintLib
|
---|
82 | DevicePathLib
|
---|
83 | UefiHiiServicesLib
|
---|
84 |
|
---|
85 | [Protocols]
|
---|
86 | ## BY_START
|
---|
87 | ## UNDEFINED # variable
|
---|
88 | gEfiIp4ServiceBindingProtocolGuid
|
---|
89 | gEfiIp4ProtocolGuid ## BY_START
|
---|
90 | gEfiManagedNetworkServiceBindingProtocolGuid ## TO_START
|
---|
91 | gEfiManagedNetworkProtocolGuid ## TO_START
|
---|
92 | gEfiArpServiceBindingProtocolGuid ## TO_START
|
---|
93 | gEfiIp4Config2ProtocolGuid ## BY_START
|
---|
94 | gEfiArpProtocolGuid ## TO_START
|
---|
95 | gEfiDhcp4ServiceBindingProtocolGuid ## TO_START
|
---|
96 | gEfiDhcp4ProtocolGuid ## TO_START
|
---|
97 | gEfiIpSec2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
98 | gEfiHiiConfigAccessProtocolGuid ## BY_START
|
---|
99 | gEfiDevicePathProtocolGuid ## TO_START
|
---|
100 |
|
---|
101 | [Guids]
|
---|
102 | ## SOMETIMES_CONSUMES ## GUID # HiiIsConfigHdrMatch EFI_NIC_IP4_CONFIG_VARIABLE
|
---|
103 | ## SOMETIMES_PRODUCES ## GUID # HiiConstructConfigHdr EFI_NIC_IP4_CONFIG_VARIABLE
|
---|
104 | ## SOMETIMES_PRODUCES ## GUID # HiiGetBrowserData EFI_NIC_IP4_CONFIG_VARIABLE
|
---|
105 | ## SOMETIMES_CONSUMES ## HII
|
---|
106 | gIp4Config2NvDataGuid
|
---|
107 |
|
---|
108 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
109 | Ip4DxeExtra.uni
|
---|
110 |
|
---|