XenPvBlkDxe.inf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ## @file
  2. # This driver produces a Block I/O protocol for a Xen PV block device.
  3. #
  4. # Copyright (C) 2014, Citrix Ltd.
  5. #
  6. # SPDX-License-Identifier: BSD-2-Clause-Patent
  7. #
  8. ##
  9. [Defines]
  10. INF_VERSION = 0x00010005
  11. BASE_NAME = XenPvBlkDxe
  12. FILE_GUID = 8c2487ea-9af3-11e3-b966-b8ac6f7d65e6
  13. MODULE_TYPE = UEFI_DRIVER
  14. VERSION_STRING = 1.0
  15. ENTRY_POINT = XenPvBlkDxeDriverEntryPoint
  16. UNLOAD_IMAGE = XenPvBlkDxeUnload
  17. [Packages]
  18. MdePkg/MdePkg.dec
  19. OvmfPkg/OvmfPkg.dec
  20. [Sources]
  21. BlockFront.c
  22. BlockFront.h
  23. BlockIo.c
  24. BlockIo.h
  25. ComponentName.c
  26. ComponentName.h
  27. DriverBinding.h
  28. XenPvBlkDxe.c
  29. XenPvBlkDxe.h
  30. [LibraryClasses]
  31. UefiDriverEntryPoint
  32. UefiBootServicesTableLib
  33. MemoryAllocationLib
  34. BaseMemoryLib
  35. BaseLib
  36. UefiLib
  37. DevicePathLib
  38. DebugLib
  39. [Protocols]
  40. gEfiDriverBindingProtocolGuid
  41. gEfiBlockIoProtocolGuid
  42. gEfiComponentName2ProtocolGuid
  43. gEfiComponentNameProtocolGuid
  44. gXenBusProtocolGuid
  45. [Guids]