1## @file
2#  This module produces EFI DHCPv4 Protocol and EFI DHCPv4 Service Binding Protocol.
3#
4#  This module produces EFI DHCPv4 Protocol upon EFI UDPv4 Protocol, to provide the
5#  capability to collect configuration information for the EFI IPv4 Protocol drivers
6#  and to provide DHCPv4 server and PXE boot server discovery services.
7#
8#  Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
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
20[Defines]
21  INF_VERSION                    = 0x00010005
22  BASE_NAME                      = Dhcp4Dxe
23  MODULE_UNI_FILE                = Dhcp4Dxe.uni
24  FILE_GUID                      = 94734718-0BBC-47fb-96A5-EE7A5AE6A2AD
25  MODULE_TYPE                    = UEFI_DRIVER
26  VERSION_STRING                 = 1.0
27  ENTRY_POINT                    = Dhcp4DriverEntryPoint
28  UNLOAD_IMAGE                   = NetLibDefaultUnload
29#
30# The following information is for reference only and not required by the build tools.
31#
32#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
33#
34#  DRIVER_BINDING                =  gDhcp4DriverBinding
35#  COMPONENT_NAME                =  gDhcp4ComponentName
36#  COMPONENT_NAME2               =  gDhcp4ComponentName2
37#
38
39[Sources]
40  Dhcp4Impl.c
41  Dhcp4Io.c
42  Dhcp4Io.h
43  ComponentName.c
44  Dhcp4Driver.h
45  Dhcp4Driver.c
46  Dhcp4Option.c
47  Dhcp4Option.h
48  Dhcp4Impl.h
49
50[Packages]
51  MdePkg/MdePkg.dec
52  MdeModulePkg/MdeModulePkg.dec
53
54
55[LibraryClasses]
56  BaseLib
57  UefiLib
58  UefiBootServicesTableLib
59  UefiDriverEntryPoint
60  DebugLib
61  NetLib
62  UdpIoLib
63
64
65[Protocols]
66  gEfiDhcp4ServiceBindingProtocolGuid           ## BY_START
67  gEfiUdp4ServiceBindingProtocolGuid            ## TO_START
68  gEfiDhcp4ProtocolGuid                         ## BY_START
69  gEfiUdp4ProtocolGuid                          ## TO_START
70
71[UserExtensions.TianoCore."ExtraFiles"]
72  Dhcp4DxeExtra.uni
73