1 | ## @file
|
---|
2 | #
|
---|
3 | # This driver produces Simple Network Protocol instances for virtio-net
|
---|
4 | # devices.
|
---|
5 | #
|
---|
6 | # Copyright (C) 2013, Red Hat, Inc.
|
---|
7 | #
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = VirtioNetDxe
|
---|
15 | FILE_GUID = A92CDB4B-82F1-4E0B-A516-8A655D371524
|
---|
16 | MODULE_TYPE = UEFI_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | ENTRY_POINT = VirtioNetEntryPoint
|
---|
19 |
|
---|
20 | [Sources]
|
---|
21 | ComponentName.c
|
---|
22 | DriverBinding.c
|
---|
23 | EntryPoint.c
|
---|
24 | Events.c
|
---|
25 | SnpGetStatus.c
|
---|
26 | SnpInitialize.c
|
---|
27 | SnpMcastIpToMac.c
|
---|
28 | SnpReceive.c
|
---|
29 | SnpReceiveFilters.c
|
---|
30 | SnpSharedHelpers.c
|
---|
31 | SnpShutdown.c
|
---|
32 | SnpStart.c
|
---|
33 | SnpStop.c
|
---|
34 | SnpTransmit.c
|
---|
35 | SnpUnsupported.c
|
---|
36 | VirtioNet.h
|
---|
37 |
|
---|
38 | [Packages]
|
---|
39 | MdePkg/MdePkg.dec
|
---|
40 | OvmfPkg/OvmfPkg.dec
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | BaseMemoryLib
|
---|
44 | DebugLib
|
---|
45 | DevicePathLib
|
---|
46 | MemoryAllocationLib
|
---|
47 | OrderedCollectionLib
|
---|
48 | UefiBootServicesTableLib
|
---|
49 | UefiDriverEntryPoint
|
---|
50 | UefiLib
|
---|
51 | VirtioLib
|
---|
52 |
|
---|
53 | [Protocols]
|
---|
54 | gEfiSimpleNetworkProtocolGuid ## BY_START
|
---|
55 | gEfiDevicePathProtocolGuid ## BY_START
|
---|
56 | gVirtioDeviceProtocolGuid ## TO_START
|
---|