Last change
on this file since 99396 was 85718, checked in by vboxsync, 5 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.8 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This module produces EFI MNP Protocol, EFI MNP Service Binding Protocol and EFI VLAN Protocol.
|
---|
3 | #
|
---|
4 | # This module produces EFI Managed Network Protocol upon EFI Simple Network Protocol,
|
---|
5 | # to provide raw asynchronous network I/O services. It also produces EFI VLAN Protocol
|
---|
6 | # to provide manageability interface for VLAN configuration.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x00010005
|
---|
15 | BASE_NAME = MnpDxe
|
---|
16 | MODULE_UNI_FILE = MnpDxe.uni
|
---|
17 | FILE_GUID = 025BBFC7-E6A9-4b8b-82AD-6815A1AEAF4A
|
---|
18 | MODULE_TYPE = UEFI_DRIVER
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | ENTRY_POINT = MnpDriverEntryPoint
|
---|
21 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
22 | #
|
---|
23 | # The following information is for reference only and not required by the build tools.
|
---|
24 | #
|
---|
25 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
26 | #
|
---|
27 | # DRIVER_BINDING = gMnpDriverBinding
|
---|
28 | # COMPONENT_NAME = gMnpComponentName
|
---|
29 | # COMPONENT_NAME2 = gMnpComponentName2
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | MnpMain.c
|
---|
34 | MnpIo.c
|
---|
35 | ComponentName.h
|
---|
36 | MnpDriver.h
|
---|
37 | ComponentName.c
|
---|
38 | MnpDriver.c
|
---|
39 | MnpConfig.c
|
---|
40 | MnpImpl.h
|
---|
41 | MnpVlan.h
|
---|
42 | MnpVlan.c
|
---|
43 |
|
---|
44 | [Packages]
|
---|
45 | MdePkg/MdePkg.dec
|
---|
46 | NetworkPkg/NetworkPkg.dec
|
---|
47 |
|
---|
48 | [LibraryClasses]
|
---|
49 | BaseLib
|
---|
50 | BaseMemoryLib
|
---|
51 | MemoryAllocationLib
|
---|
52 | UefiLib
|
---|
53 | UefiBootServicesTableLib
|
---|
54 | UefiDriverEntryPoint
|
---|
55 | DebugLib
|
---|
56 | NetLib
|
---|
57 | DpcLib
|
---|
58 |
|
---|
59 | [Protocols]
|
---|
60 | gEfiManagedNetworkServiceBindingProtocolGuid ## BY_START
|
---|
61 | gEfiSimpleNetworkProtocolGuid ## TO_START
|
---|
62 | gEfiManagedNetworkProtocolGuid ## BY_START
|
---|
63 | ## BY_START
|
---|
64 | ## UNDEFINED # variable
|
---|
65 | gEfiVlanConfigProtocolGuid
|
---|
66 |
|
---|
67 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
68 | MnpDxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.