Dhcp6Dxe.inf 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ## @file
  2. # Client-side DHCPv6 services.
  3. #
  4. # This driver produces EFI DHCPv6 Protocol which is used to get IPv6 addresses
  5. # and other configuration parameters from DHCPv6 servers.
  6. #
  7. # (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
  8. # Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
  9. #
  10. # SPDX-License-Identifier: BSD-2-Clause-Patent
  11. #
  12. ##
  13. [Defines]
  14. INF_VERSION = 0x00010005
  15. BASE_NAME = Dhcp6Dxe
  16. FILE_GUID = 95E3669D-34BE-4775-A651-7EA41B69D89E
  17. MODULE_TYPE = UEFI_DRIVER
  18. VERSION_STRING = 1.0
  19. ENTRY_POINT = Dhcp6DriverEntryPoint
  20. UNLOAD_IMAGE = NetLibDefaultUnload
  21. MODULE_UNI_FILE = Dhcp6Dxe.uni
  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 = gDhcp6DriverBinding
  28. # COMPONENT_NAME = gDhcp6ComponentName
  29. # COMPONENT_NAME2 = gDhcp6ComponentName2
  30. #
  31. [Sources]
  32. Dhcp6Driver.c
  33. Dhcp6Driver.h
  34. Dhcp6Impl.c
  35. Dhcp6Impl.h
  36. Dhcp6Io.c
  37. Dhcp6Io.h
  38. Dhcp6Utility.c
  39. Dhcp6Utility.h
  40. ComponentName.c
  41. [Packages]
  42. MdePkg/MdePkg.dec
  43. MdeModulePkg/MdeModulePkg.dec
  44. NetworkPkg/NetworkPkg.dec
  45. [LibraryClasses]
  46. UefiLib
  47. BaseLib
  48. BaseMemoryLib
  49. MemoryAllocationLib
  50. UefiDriverEntryPoint
  51. UefiBootServicesTableLib
  52. UefiRuntimeServicesTableLib
  53. DebugLib
  54. NetLib
  55. UdpIoLib
  56. [Protocols]
  57. gEfiUdp6ServiceBindingProtocolGuid ## TO_START
  58. gEfiUdp6ProtocolGuid ## TO_START
  59. gEfiDhcp6ServiceBindingProtocolGuid ## BY_START
  60. gEfiDhcp6ProtocolGuid ## BY_START
  61. gEfiIp6ConfigProtocolGuid ## TO_START
  62. [Guids]
  63. gZeroGuid ## SOMETIMES_CONSUMES ## GUID
  64. [Pcd]
  65. gEfiNetworkPkgTokenSpaceGuid.PcdDhcp6UidType ## SOMETIMES_CONSUMES
  66. [UserExtensions.TianoCore."ExtraFiles"]
  67. Dhcp6DxeExtra.uni