EmuBlockIoDxe.inf 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. # This program and the accompanying materials
  10. # are licensed and made available under the terms and conditions of the BSD License
  11. # which accompanies this distribution. The full text of the license may be found at
  12. # http://opensource.org/licenses/bsd-license.php
  13. # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
  15. #
  16. #
  17. ##
  18. [Defines]
  19. INF_VERSION = 0x00010005
  20. BASE_NAME = EmuBlockIo
  21. FILE_GUID = C6760651-A38D-5F4F-AEAF-F6661549DF75
  22. MODULE_TYPE = UEFI_DRIVER
  23. VERSION_STRING = 1.0
  24. ENTRY_POINT = InitializeEmuBlockIo
  25. #
  26. # The following information is for reference only and not required by the build tools.
  27. #
  28. # VALID_ARCHITECTURES = IA32 X64 EBC
  29. #
  30. # DRIVER_BINDING = gUnixBlockIoDriverBinding
  31. # COMPONENT_NAME = gUnixBlockIoComponentName
  32. # DRIVER_DIAG = gUnixBlockIoDriverDiagnostics
  33. #
  34. [Sources]
  35. DriverDiagnostics.c
  36. DriverConfiguration.c
  37. ComponentName.c
  38. EmuBlockIo.c
  39. EmuBlockIo.h
  40. [Packages]
  41. MdePkg/MdePkg.dec
  42. EmulatorPkg/EmulatorPkg.dec
  43. [LibraryClasses]
  44. UefiBootServicesTableLib
  45. MemoryAllocationLib
  46. BaseMemoryLib
  47. UefiLib
  48. UefiDriverEntryPoint
  49. BaseLib
  50. DebugLib
  51. [Guids]
  52. gEmuPhysicalDisksGuid # SOMETIMES_CONSUMED
  53. gEmuVirtualDisksGuid # ALWAYS_CONSUMED
  54. [Protocols]
  55. gEfiBlockIoProtocolGuid # PROTOCOL BY_START
  56. gEfiBlockIo2ProtocolGuid # PROTOCOL BY_START
  57. gEmuIoThunkProtocolGuid # PROTOCOL TO_START
  58. gEmuBlockIoProtocolGuid # PROTOCOL BY_START