Dhcp4Dxe.inf 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 - 2018, Intel Corporation. All rights reserved.<BR>
  9. # SPDX-License-Identifier: BSD-2-Clause-Patent
  10. #
  11. #
  12. ##
  13. [Defines]
  14. INF_VERSION = 0x00010005
  15. BASE_NAME = Dhcp4Dxe
  16. MODULE_UNI_FILE = Dhcp4Dxe.uni
  17. FILE_GUID = 94734718-0BBC-47fb-96A5-EE7A5AE6A2AD
  18. MODULE_TYPE = UEFI_DRIVER
  19. VERSION_STRING = 1.0
  20. ENTRY_POINT = Dhcp4DriverEntryPoint
  21. UNLOAD_IMAGE = NetLibDefaultUnload
  22. #
  23. # The following information is for reference only and not required by the build tools.
  24. #
  25. # VALID_ARCHITECTURES = IA32 X64 EBC
  26. #
  27. # DRIVER_BINDING = gDhcp4DriverBinding
  28. # COMPONENT_NAME = gDhcp4ComponentName
  29. # COMPONENT_NAME2 = gDhcp4ComponentName2
  30. #
  31. [Sources]
  32. Dhcp4Impl.c
  33. Dhcp4Io.c
  34. Dhcp4Io.h
  35. ComponentName.c
  36. Dhcp4Driver.h
  37. Dhcp4Driver.c
  38. Dhcp4Option.c
  39. Dhcp4Option.h
  40. Dhcp4Impl.h
  41. [Packages]
  42. MdePkg/MdePkg.dec
  43. NetworkPkg/NetworkPkg.dec
  44. [LibraryClasses]
  45. BaseLib
  46. UefiLib
  47. UefiBootServicesTableLib
  48. UefiDriverEntryPoint
  49. DebugLib
  50. NetLib
  51. UdpIoLib
  52. [Protocols]
  53. gEfiDhcp4ServiceBindingProtocolGuid ## BY_START
  54. gEfiUdp4ServiceBindingProtocolGuid ## TO_START
  55. gEfiDhcp4ProtocolGuid ## BY_START
  56. gEfiUdp4ProtocolGuid ## TO_START
  57. [UserExtensions.TianoCore."ExtraFiles"]
  58. Dhcp4DxeExtra.uni