2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# This module produces EFI SNP Protocol.
|
2007-07-24 10:06:37 +02:00
|
|
|
#
|
2018-06-27 15:08:52 +02:00
|
|
|
# This module produces Simple Network Protocol upon EFI Network Interface
|
2014-08-28 08:34:06 +02:00
|
|
|
# Identifier Protocol, to provide a packet level interface to a network adapter.
|
2007-07-24 10:06:37 +02:00
|
|
|
#
|
2019-10-14 14:37:28 +02:00
|
|
|
# Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:05:13 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-07-24 10:06:37 +02:00
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = SnpDxe
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = SnpDxe.uni
|
2007-07-24 10:06:37 +02:00
|
|
|
FILE_GUID = A2f436EA-A127-4EF8-957C-8048606FF670
|
2008-08-18 11:18:44 +02:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2007-07-24 10:06:37 +02:00
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = InitializeSnpNiiDriver
|
2011-07-04 09:33:34 +02:00
|
|
|
UNLOAD_IMAGE = NetLibDefaultUnload
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2007-07-24 10:06:37 +02:00
|
|
|
#
|
2018-06-27 15:08:52 +02:00
|
|
|
# DRIVER_BINDING = mSimpleNetworkDriverBinding
|
2008-12-04 08:12:25 +01:00
|
|
|
# COMPONENT_NAME = gSimpleNetworkComponentName
|
|
|
|
# COMPONENT_NAME2 = gSimpleNetworkComponentName2
|
|
|
|
#
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2008-02-20 03:42:59 +01:00
|
|
|
Receive.c
|
|
|
|
Snp.h
|
|
|
|
Nvdata.c
|
|
|
|
Get_status.c
|
|
|
|
Start.c
|
|
|
|
Snp.c
|
|
|
|
Stop.c
|
|
|
|
Statistics.c
|
|
|
|
Reset.c
|
|
|
|
Shutdown.c
|
|
|
|
Mcast_ip_to_mac.c
|
|
|
|
Transmit.c
|
2007-07-24 10:06:37 +02:00
|
|
|
WaitForPacket.c
|
2008-02-20 03:42:59 +01:00
|
|
|
Receive_filters.c
|
2008-02-20 03:55:45 +01:00
|
|
|
Initialize.c
|
2007-07-24 10:06:37 +02:00
|
|
|
ComponentName.c
|
2008-02-20 03:42:59 +01:00
|
|
|
Callback.c
|
|
|
|
Station_address.c
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2019-05-15 14:02:19 +02:00
|
|
|
NetworkPkg/NetworkPkg.dec
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiLib
|
|
|
|
BaseLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
BaseMemoryLib
|
|
|
|
DebugLib
|
2011-07-04 09:33:34 +02:00
|
|
|
NetLib
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-04-10 10:31:45 +02:00
|
|
|
[Guids]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiEventExitBootServicesGuid ## SOMETIMES_CONSUMES ## Event
|
2009-04-10 10:31:45 +02:00
|
|
|
|
2007-07-24 10:06:37 +02:00
|
|
|
[Protocols]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiSimpleNetworkProtocolGuid ## BY_START
|
|
|
|
gEfiDevicePathProtocolGuid ## TO_START
|
|
|
|
gEfiNetworkInterfaceIdentifierProtocolGuid_31 ## TO_START
|
|
|
|
gEfiPciIoProtocolGuid ## TO_START
|
|
|
|
|
2019-10-14 14:37:28 +02:00
|
|
|
[Pcd]
|
|
|
|
gEfiNetworkPkgTokenSpaceGuid.PcdSnpCreateExitBootServicesEvent ## CONSUMES
|
|
|
|
|
2014-08-28 08:34:06 +02:00
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
SnpDxeExtra.uni
|