ArpDxe.inf 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ## @file
  2. # This module produces EFI ARP Protocol and EFI ARP Service Binding Protocol.
  3. #
  4. # This module produces EFI ARP Protocol upon EFI MNP Protocol, to provide a generic
  5. # implementation of the Address Resolution Protocol that is described in RFCs 826
  6. # and 1122.
  7. #
  8. # Copyright (c) 2006 - 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 = ArpDxe
  16. MODULE_UNI_FILE = ArpDxe.uni
  17. FILE_GUID = 529D3F93-E8E9-4e73-B1E1-BDF6A9D50113
  18. MODULE_TYPE = UEFI_DRIVER
  19. VERSION_STRING = 1.0
  20. ENTRY_POINT = ArpDriverEntryPoint
  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 = gArpDriverBinding
  28. # COMPONENT_NAME = gArpComponentName
  29. # COMPONENT_NAME2 = gArpComponentName2
  30. #
  31. [Sources]
  32. ArpMain.c
  33. ArpDriver.h
  34. ComponentName.c
  35. ArpImpl.h
  36. ArpImpl.c
  37. ArpDriver.c
  38. [Packages]
  39. MdePkg/MdePkg.dec
  40. NetworkPkg/NetworkPkg.dec
  41. [LibraryClasses]
  42. UefiLib
  43. UefiBootServicesTableLib
  44. UefiDriverEntryPoint
  45. DebugLib
  46. NetLib
  47. DpcLib
  48. [Protocols]
  49. gEfiArpServiceBindingProtocolGuid ## BY_START
  50. gEfiManagedNetworkServiceBindingProtocolGuid ## TO_START
  51. gEfiArpProtocolGuid ## BY_START
  52. gEfiManagedNetworkProtocolGuid ## TO_START
  53. [UserExtensions.TianoCore."ExtraFiles"]
  54. ArpDxeExtra.uni