1. aca8441 remove additional space from comments and pass ICC/GCC44 build by erictian · 14 years ago
  2. a41b527 add native ide/ahci driver by erictian · 14 years ago
  3. cd7bfc2 Refine code to make code run safely. by ydong10 · 14 years ago
  4. c932570 Refine soma code to make code run safely. by ydong10 · 14 years ago
  5. bf45bbe Update this library to restrict usage to DXE_RUNTIME_DRIVER and DXE_SAL_DRIVER module types by mdkinney · 14 years ago
  6. 2e4c2a0 Improve PXE Over IPv4 performance: by hhuan13 · 14 years ago
  7. 3163461 Rename one file to follow the file naming convention. by rsun3 · 14 years ago
  8. 24b6e24 Rename one file to follow the file naming convention. by rsun3 · 14 years ago
  9. 034ffda Fill AtaDeviceHeader field in ATA command block by qhuang8 · 14 years ago
  10. ac8cca2 The patch acknowledges the TCP zero window probe message, either the format with 1 byte new data, or no new data. It also increases exponentially the interval between successive probes when performing TCP zero window probe. by tye1 · 14 years ago
  11. 8730386 To comply w/ UEFI spec , In Dhcp(), Discover(), and Mtftp() interfaces, set the IP filter to use StationIp. by hhuan13 · 14 years ago
  12. 9a43bc3 Avoid DxeCore to reclaim PEI stack as IDT may be on it (like 32-bit OVMF). by pgao2 · 14 years ago
  13. f95bc04 Change the check condition for 16 byte command, when HDD size is > 2TB, use 16 byte command instead. by li-elvin · 14 years ago
  14. 9e375eb Fixed Ip4 bug that causing Iscsi reconnect hang sporadically . In Ip4OutPut()->Ip4IpSecProcessPacket() line 511, each time "reconnect -r", IpSb is re-allocated in IpDriver.Start(). But only when the first time, IpSb->OldMaxPacketSize = IpSb->MaxPacketSize; For the sequential reconnect, IpSb->OldMaxPacketSize is left dirty. Somtimes it is 0, causing the next sending packages generate exception. by hhuan13 · 14 years ago
  15. 6989af7 clear the correct BAR register. Because for P2P device, only register from 0x10 to 0x14 is BAR register. by niruiyu · 14 years ago
  16. cfbc1a7 1. Introduce PcdTftpBlockSize to let platform DSC customize block size. by hhuan13 · 14 years ago
  17. f184c10 remove CpuBreakpoint (). by vanjeff · 14 years ago
  18. db724ff Fixed one bug which may lead standard error handle could not be set into system table correctly since default return status is set to error by default. by vanjeff · 14 years ago
  19. 11fa429 Roll back BlockSize to 0x8000 for PXE performance concern. by hhuan13 · 14 years ago
  20. ae0a0b0 Fix bug in Ip4Dxe and Dhcp4Dxe to ensure that RaiseTPL and RestoreTPL are in pair. by xdu2 · 14 years ago
  21. 3af91e2 Minor code refinement. by rsun3 · 14 years ago
  22. 1955038 Fixed K9 scan issues. by hhuan13 · 14 years ago
  23. d0d41b5 Move registration of DXE Core with PeCoffExtraActionLib after the lib constructors have been executed. by mdkinney · 14 years ago
  24. 7754556 Fix IP address text representation issue about leading zeros by jjin9 · 14 years ago
  25. 379f83d According to SCSI spec, ANSI version is 3 bits, so 0x7 should be used to get correct ANSI version. by li-elvin · 14 years ago
  26. baa9a78 Fix a typo in Ip4ConfigDriverBindingStart(): it should be gEfiManagedNetworkServiceBindingProtocolGuid instead of gEfiManagedNetworkProtocolGuid. by xdu2 · 14 years ago
  27. ef89996 Update MnpDxe to deliver VLAN tagged packet even when there is no VLAN is configured through VlanConfig protocol, this ensure that interesting applications could still get chance to receive all layer 2 frames. by xdu2 · 14 years ago
  28. b43619d Update DXE Core so its own PE/COFF image is passed to the PeCoffExtraActionLib by mdkinney · 14 years ago
  29. dd85e4b Add debug print that the system is about to be reset. I was seeing watchtog timeouts in UnixPkg and they were hard to debug as gdb was exiting. This debug print should be useful in general. by andrewfish · 14 years ago
  30. fd627b1 Fix a bug. iSCSI driver doesn’t follow driver model Start()/Stop() in case no configuration data for login. So when VLAN form Add/Remove items, iScsi form cannot update MAC address. by hhuan13 · 14 years ago
  31. bc369e7 Add NULL pointer checking against Data. by xli24 · 14 years ago
  32. 4ad858e Fix one issue: Some last IP settings may be lost when IP setting was re-set. by vanjeff · 14 years ago
  33. 96a2516 Handle gEfiStatusCodeDataTypeStringGuid in status code handler drivers. by xli24 · 14 years ago
  34. ad108ab Roll back change r10696, because new update on r10700 and r10701 handles this issue. by lgao4 · 14 years ago
  35. 1d6ee65 Enhance FV2.ReadSection() to read GUIDED section raw data when its extraction guided protocol doesn’t exist. by lgao4 · 14 years ago
  36. 3440157 Enhance PiSmmCoreMemoryAllocationLib Free function implementation to call gSmst or gBS Free service according to the buffer in or out of SMRAM range. by lgao4 · 14 years ago
  37. 79bcf05 Make sure gBS FreePool() is used to free the buffer always allocated by gBS AllocatePool() service. by lgao4 · 14 years ago
  38. 09ba0c4 Update AtaBus module to use Uefi.h as the master header file as it is a pure UEFI driver. by qhuang8 · 14 years ago
  39. 92a4f6f Add 64-bit versions of FLASH Base addressess as it is legal to have them >4G. For backward compatability if the new 64-bit base addresses are zero use the old 32-bit base addressess. by andrewfish · 14 years ago
  40. fe3b68b Per UEFI Spec, LowestAlignedLba and LogicalBlocksPerPhysicalBlock must be 0 for logical partitions. by niruiyu · 15 years ago
  41. 4cf7e03 1. Add init flag DEBUG_AGENT_INIT_DXE_AP. by vanjeff · 15 years ago
  42. 635021c Fix 64-bit bug in DxeIpl. You can't cast an & UINT64 to a UINT32 *, as the upper 32-bits do not get updated. In my case there was data on the stack for the upper 32-bits and it caused the size to be greater than 4GB. by andrewfish · 15 years ago
  43. 4196f91 Enhance to follow UEFI2.3 spec - the EFI_ACPI_TABLE_PROTOCOL will ensure that the checksum field is correct for both the RSDT/XSDT table and the table being installed through the AcpiTableBuffer parameter. by jyao1 · 15 years ago
  44. 72ed3d7 Refine code. by vanjeff · 15 years ago
  45. 099f2b1 Change type of PcdSrIovSupport/PcdAriSupport/PcdMrIovSupport from FeatureFlag to [FixAtBuild, PcdDynamics]. by rsun3 · 15 years ago
  46. 0539981 Return from ProgramBar() after VF BARs are programmed. by rsun3 · 15 years ago
  47. d404839 Fix bugs in the PCI bus driver to support SR-IOV. by rsun3 · 15 years ago
  48. 78c0686 remove duplicated code. by vanjeff · 15 years ago
  49. a4ac31e Remove ASSERT and change to if () by hhuan13 · 15 years ago
  50. 787cd14 Fix a bug by adding * for Ptr8 by hhuan13 · 15 years ago
  51. 1c8029e Update the previous fix to only shadow the function for supported processor architectrues. The old way required non supported processor architectures to opt out. by andrewfish · 15 years ago
  52. 27172c0 Fix issue with ARM port. Image.c shadow code is not ANSI C and crashes on ARM. So I did the same thing that is done on Itanium and skipped the shadow for ARM architecture in all cases. by andrewfish · 15 years ago
  53. 4546bcb Fix a bug: by hhuan13 · 15 years ago
  54. be63a20 Fix the issues that StatusCode can't work when PcdStatusCodeUseMemory is set to TRUE. by lgao4 · 15 years ago
  55. b24633c Initialize lists ArpService->PendingRequestTable/DeniedCacheTable/ResolvedCacheTable before firing timer ArpService->PeriodicTimer. This remove the race condition in ArpCreateService(): it is possible for the timer event to trigger before the lists are initialized which will results in a hang in ArpTimerHandler(). by xdu2 · 15 years ago
  56. 74df502 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. by xdu2 · 15 years ago
  57. 49fd66c Fix a bug that mtftp4 driver reply 2 ACK in answer to incoming No.65535 block data. That issue incurs incorrect network transfer. by hhuan13 · 15 years ago
  58. 1dc1b43 1. fixed one bug to construct config request string header used child handle instead of NIC controller handle. by vanjeff · 15 years ago
  59. 25400c6 Add routing header type to NetLib. by tye1 · 15 years ago
  60. 6b22483 1) Call ProcessNotifyList() to process all Dispatch Notifications after the Memory Discovered PPI is installed. by mdkinney · 15 years ago
  61. f1f11ea Fixed a bug in Mtftp4: to allow the block number to roll over to accept transfers of unlimited size. by hhuan13 · 15 years ago
  62. 46f0e2a Remove some unnecessary clear screen from console drivers. by li-elvin · 15 years ago
  63. 35f9e94 Add a missing parameter description in the function header for CoreFindFreePagesI(). by rsun3 · 15 years ago
  64. 2345e7d 1) Improve how memory usage is tracked in DXE Core by mdkinney · 15 years ago
  65. 2a2e33b Add a UNION definition (IP_IO_IP_PROTOOCL) for EFI_IP4/6_PROTOCOL and change IP_IO structure using this UNION to point the special IP Protocol. by qianouyang · 15 years ago
  66. 5bf5fb3 Change MaxBlock to HEX value to avoid GCC build failure. by li-elvin · 15 years ago
  67. 13ad1de Do the following fix up in SetupBrowser driver: by lgao4 · 15 years ago
  68. 39669f1 Fixed tracker #203752, Dhcp4 assert issue. by hhuan13 · 15 years ago
  69. 5adb8db Per UEFI spec, FORM_OPEN/FORM_CLOSE Callback function should be called for each question in the form when this form opens or closes. by lgao4 · 15 years ago
  70. a108933 If SCSI version support Read/Write (16) command, use both commands to access disk especially for above 2TB. by li-elvin · 15 years ago
  71. e22812c Add three HiiLib APIs: HiiCreateTextOpCode, HiiCreateDateOpCode and HiiCreateTimeOpCode by lgao4 · 15 years ago
  72. 4a5b245 Status code handler callback should be declared as EFIAPI by klu2 · 15 years ago
  73. ec7cb6a Add the missing PalLib NULL instance. by lgao4 · 15 years ago
  74. c6b4f78 Add the missing PalLib NULL instance. by lgao4 · 15 years ago
  75. a167ecb Fixed the issue of that IP4driver can’t correctly reassemble the Out of Sequence Fragments. by qianouyang · 15 years ago
  76. 6a53bf1 Clean up package/platform DSC files by the following steps: by lgao4 · 15 years ago
  77. a6bb62e MdeModulePkg AcpiTableDxe: Fix GCC build warning by jljusten · 15 years ago
  78. 2ad29d0 fix a bug that FindVariable() may set GoneThrough flag wrongly when a >64K variable exists. by erictian · 15 years ago
  79. afe7c8b Fix VS2003 build error by jyao1 · 15 years ago
  80. 0ef42f8 Update QueryCapsuleCapabilities interface. by li-elvin · 15 years ago
  81. 9c4a5f7 add security check. by vanjeff · 15 years ago
  82. 3dc8585 MdeModulePkg: by jyao1 · 15 years ago
  83. f0c855b Small code refinement in MdeModulePkg. by rsun3 · 15 years ago
  84. 0e4483b Fix DxeCore Dispatch Issue that DXE drivers may not be dispatched if they depend on the protocols produced by SMM driver. by lgao4 · 15 years ago
  85. 29a4f92 Fix 3 K8 issues for PXE module by hhuan13 · 15 years ago
  86. e3e134e Fix minor format issue in file header by qhuang8 · 15 years ago
  87. 2432c68 Fix for UNIXGCC build by jchen20 · 15 years ago
  88. ef05e06 1) Fix IPF ICC 11.1 issue when /Ox is used related to the use of local variables and parameter across the transition when TEMP RAM is disabled. by mdkinney · 15 years ago
  89. da935a5 Add fix for the hardcoded Max ACPI table number. With this fix, the number of ACPI table has no limitations by dynamical allocation by jchen20 · 15 years ago
  90. c16f9cc Minor comment update. by xdu2 · 15 years ago
  91. e35eb8a 1. Use the max string size to compare password string. by lgao4 · 15 years ago
  92. 4da3058 Fix ICC 11.1 build break by mdkinney · 15 years ago
  93. 2dda77a Update UHCI and ECHI drivers to both Stop and Reset the host controller at ExitBootServices(). by mdkinney · 15 years ago
  94. 8063b47 Fix bug in PciHostBridgeEnumerator(). by mdkinney · 15 years ago
  95. 15cc67e raise TPL to TPL_CALLBACK level at DriverBindingStart() for all usb-related modules, which prevent DriverBindingStop() from being invoked when DriverBindingStart() runs. by erictian · 15 years ago
  96. d7aaf1d Use new API GetSectionFromAnyFvByFileType() of MdePkg DxeServicesLib library to get PE data of SMM_CORE driver. by lgao4 · 15 years ago
  97. 8091267 Forcing functions with variable argument lists to use the same calling convention (EFIAPI). This solves issues when using compilers where the default calling convention is not EFIAPI. by geekboy15a · 15 years ago
  98. cd5ebaa Update the copyright notice format by hhtian · 15 years ago
  99. e5eed7d Update the copyright notice format by hhtian · 15 years ago
  100. 3140ced Fix a bug that FV->ReadSection cannot get the EFI_SECTION_GUID_DEFINED type section data. by niruiyu · 15 years ago