mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
1. Update to use 1 EFI Variable per NIC (instead of converge all NIC configuration into one EFI Variable), this remove the limitation that max NIC configuration will depend on PcdMaxVariableSize. 2. Remove unnecessary Unload function EfiIp4ConfigUnload (use default Unload function NetLibDefaultUnload instead), remove global array for NIC handle tracking since it's driver model driver. 3. Add Ip4Config Variable reclaim to HiiConfigAccess.RouteConfig() to remove variable for NIC which has been removed from the system. 4. Update HiiConfigAccess.ExtractConfig interface produced by the following drivers to support NULL request string and ConfigHdr request string without any request element according to the latest UEFI specification. 5. Update the title Network Configuration to IPv4 Network Configuration. 6. Fix one issue: Some last IP settings may be lost when IP setting was re-set. 7. Fix a typo in Ip4ConfigDriverBindingStart(): it should be gEfiManagedNetworkServiceBindingProtocolGuid instead of gEfiManagedNetworkProtocolGuid. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/branches/UDK2008@11072 6f19259b-4bc3-4df7-8a09-765794883524
61 lines
1.9 KiB
INI
61 lines
1.9 KiB
INI
/** @file
|
|
Instance of DxeNetLib.
|
|
|
|
Copyright (c) 2006 - 2009, Intel Corporation.<BR>
|
|
All rights reserved. This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = DxeNetLib
|
|
FILE_GUID = db6dcef3-9f4e-4340-9351-fc35aa8a5888
|
|
MODULE_TYPE = DXE_DRIVER
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = NetLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
|
|
|
#
|
|
# The following information is for reference only and not required by the build tools.
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
#
|
|
|
|
[Sources.common]
|
|
DxeNetLib.c
|
|
NetBuffer.c
|
|
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
DebugLib
|
|
BaseMemoryLib
|
|
UefiBootServicesTableLib
|
|
UefiRuntimeServicesTableLib
|
|
UefiLib
|
|
MemoryAllocationLib
|
|
DevicePathLib
|
|
HiiLib
|
|
PrintLib
|
|
|
|
[Guids]
|
|
gEfiNicIp4ConfigVariableGuid
|
|
|
|
[Protocols]
|
|
gEfiSimpleNetworkProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
gEfiManagedNetworkProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
gEfiManagedNetworkServiceBindingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
gEfiComponentNameProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
gEfiComponentName2ProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
gEfiHiiConfigRoutingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|