EmuBlockIoDxe.inf 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ## @file
  2. # Block Io driver
  3. #
  4. # Produce block IO abstractions for real devices on your PC using Unix APIs.
  5. # The configuration of what devices to mount or emulate comes from
  6. # environment variables.
  7. # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
  8. #
  9. # SPDX-License-Identifier: BSD-2-Clause-Patent
  10. #
  11. #
  12. ##
  13. [Defines]
  14. INF_VERSION = 0x00010005
  15. BASE_NAME = EmuBlockIo
  16. FILE_GUID = C6760651-A38D-5F4F-AEAF-F6661549DF75
  17. MODULE_TYPE = UEFI_DRIVER
  18. VERSION_STRING = 1.0
  19. ENTRY_POINT = InitializeEmuBlockIo
  20. #
  21. # The following information is for reference only and not required by the build tools.
  22. #
  23. # VALID_ARCHITECTURES = IA32 X64 EBC
  24. #
  25. # DRIVER_BINDING = gUnixBlockIoDriverBinding
  26. # COMPONENT_NAME = gUnixBlockIoComponentName
  27. # DRIVER_DIAG = gUnixBlockIoDriverDiagnostics
  28. #
  29. [Sources]
  30. DriverDiagnostics.c
  31. DriverConfiguration.c
  32. ComponentName.c
  33. EmuBlockIo.c
  34. EmuBlockIo.h
  35. [Packages]
  36. MdePkg/MdePkg.dec
  37. EmulatorPkg/EmulatorPkg.dec
  38. [LibraryClasses]
  39. UefiBootServicesTableLib
  40. MemoryAllocationLib
  41. BaseMemoryLib
  42. UefiLib
  43. UefiDriverEntryPoint
  44. BaseLib
  45. DebugLib
  46. [Guids]
  47. gEmuPhysicalDisksGuid # SOMETIMES_CONSUMED
  48. gEmuVirtualDisksGuid # ALWAYS_CONSUMED
  49. [Protocols]
  50. gEfiBlockIoProtocolGuid # PROTOCOL BY_START
  51. gEfiBlockIo2ProtocolGuid # PROTOCOL BY_START
  52. gEmuIoThunkProtocolGuid # PROTOCOL TO_START
  53. gEmuBlockIoProtocolGuid # PROTOCOL BY_START