• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2# A non-transitional driver for VirtIo 1.0 PCI devices.
3#
4# Copyright (C) 2016, Red Hat, Inc.
5#
6# This program and the accompanying materials are licensed and made available
7# under the terms and conditions of the BSD License which accompanies this
8# distribution. The full text of the license may be found at
9# http://opensource.org/licenses/bsd-license.php
10#
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT
12# WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13##
14
15[Defines]
16  INF_VERSION                    = 0x00010005
17  BASE_NAME                      = Virtio10
18  FILE_GUID                      = 0170F60C-1D40-4651-956D-F0BD9879D527
19  MODULE_TYPE                    = UEFI_DRIVER
20  VERSION_STRING                 = 1.0
21  ENTRY_POINT                    = Virtio10EntryPoint
22
23[Sources]
24  Virtio10.c
25
26[Packages]
27  MdePkg/MdePkg.dec
28  OvmfPkg/OvmfPkg.dec
29
30[LibraryClasses]
31  BaseMemoryLib
32  DebugLib
33  MemoryAllocationLib
34  UefiBootServicesTableLib
35  UefiDriverEntryPoint
36  UefiLib
37
38[Protocols]
39  gEfiPciIoProtocolGuid     ## TO_START
40  gVirtioDeviceProtocolGuid ## BY_START
41