1. 6e3f5b2 Fix K8 and Sct failure. by lgao4 · 16 years ago
  2. 08654ac don't set all bytes in TargetID as zero. This change is made due to keep consistent with GetNextTargetLun and GetTargetLun by eric_tian · 16 years ago
  3. cdcc36a Correct the dummy ConfigAccess Extract and RouteConfig behavior according to UEFI specification. by lgao4 · 16 years ago
  4. 6b3ecf5 Add back logic to encode LUN in CDB for compatibility with SCSI-2 spec, although LUN encoding in CDB is changed to be reserved in SCSI-3 spec. by rsun3 · 16 years ago
  5. 5dc4fd7 Fix the unaligned issue of PCI read/write buffer. by xli24 · 16 years ago
  6. dfbb47d fix a typo of missing a colon sign after a label symbol. by eric_tian · 16 years ago
  7. 676e2a3 Fix bugs in the UEFI SCSI Library. by rsun3 · 16 years ago
  8. b27af9d As ECP package is EDKI style, the AutoGen.h will not include anything. So if we use some basic data structures, we should manually include EdkIIGlueBase.h file. by eric_tian · 16 years ago
  9. d1a8a1d Fix a bug in the SCSI Bus driver due to which some SCSI devices can not be discovered. Per SCSI spec, the standard INQUIRY data shall contain at least 36 bytes and the length of the data is variable. The definition by rsun3 · 16 years ago
  10. 78709ef change the error usage of "#if __GNUC__" Condition Macro to "#if defined(__GNUC__)" by eric_tian · 16 years ago
  11. 99ade97 Add BaseLib for BaseCpuLib.inf. by xli24 · 16 years ago
  12. f035af2 update the check condition of PASS THRU interface to pass Uefi sct test. by eric_tian · 16 years ago
  13. 8567300 Fix K8 issues in HiiDataBase by lgao4 · 16 years ago
  14. d7dfd02 1. Clean up MdePkg internal header files by lgao4 · 16 years ago
  15. 8968742 Originally, there are following implementation: by klu2 · 16 years ago
  16. 7d28e82 add one comment when destroy the buffer. by vanjeff · 16 years ago
  17. 04da0b4 Correct DriverSample to produce the ConfigAccess protocol by lgao4 · 16 years ago
  18. d6e11f2 1. remove duplicated set operation on UGA device. 2. update some typo. by vanjeff · 16 years ago
  19. 1f1cb2f Retire original HII APIs: IfrLibExtractDefault and ConstructConfigAltResp, which are replaced by HiiSetToDefaults API. by lgao4 · 16 years ago
  20. b347c1b Add check for NULL pointer. by gikidy · 16 years ago
  21. 34e4a9a cleanup the .S file to wrap all public symbols with ASM_PFX() macro,which is used to generate underscore prior to public symbol or not within various GCC distribution versions. by eric_tian · 16 years ago
  22. d3c0cbc cleanup the .S file to wrap all public symbols with ASM_PFX() macro,which is used to generate underscore prior to public symbol or not within various GCC distribution versions. by eric_tian · 16 years ago
  23. 44c0fd7 Update CpuSleep() for IPF. by xli24 · 16 years ago
  24. 76c2425 Update HiiDataBase to fix parsing Hii package error. Some HiiPackages have no varstore and question, they has no the built in default value. by lgao4 · 16 years ago
  25. 84f9a9e 1. Update the implementation of HII ConfigRouting Protocol in HiiDataBase module to follow new ECRs. by lgao4 · 16 years ago
  26. 59ceeab 1. Add address check for "RegisterForRuntime" APIs of PciLib, PciCf8Lib, PciExpressLib, and PciSegmentLib. by xli24 · 16 years ago
  27. c40a155 fixed typo. by vanjeff · 16 years ago
  28. 6388684 1. retired NicIp4ConfigProtocolGuid by vanjeff · 16 years ago
  29. 945e3ae Add a check for CreateQuestion may be return NULL. by gikidy · 16 years ago
  30. 0ad78d0 Refine code for PeiReportStatusCodeLib. by xli24 · 16 years ago
  31. 133ed0b Fix bug for -b option by klu2 · 16 years ago
  32. 884f6e7 Add checking for configuration template file. by klu2 · 16 years ago
  33. 66b2a7d Add valid range checking for count of multi-thread by klu2 · 16 years ago
  34. 410ee03 Add checking for options number to avoid user's confusion. The corresponding patch in source is r1583 in build tools project. by klu2 · 16 years ago
  35. f6c412f Make improvement that if target directory does not exist, create it. This patch is corresponding to r1582 in build tool project. by klu2 · 16 years ago
  36. 8ab1d99 Make tool more intelligence for missing configuration item. The corresponding version number is r1581 in build tools project. by klu2 · 16 years ago
  37. e1f1fb1 fixed typo. EFI_OUT_OF_MEMORY should be EFI_OUT_OF_RESOURCES. by vanjeff · 16 years ago
  38. 9920798 Update GenFw help usage information to clarify -z option. by lgao4 · 16 years ago
  39. faeb321 Fix the implementation of AsciiStrStr() and StrStr() in MdePkg. If the length of SearchString is zero, then String is returned. by rsun3 · 16 years ago
  40. 5630456 Minor update the function interface for three re-allocate pool APIs to check the conformance of OldBuffer only when the memory allocation succeeds. In this way the assert condition is covered by CopyMem () API in BaseMemoryLib. by qhuang8 · 16 years ago
  41. d2b4564 fixed to build under IPF. by jcarsey · 16 years ago
  42. 446b94b Add conformance check for OldBuffer and size even if the memory allocation fails. by qhuang8 · 16 years ago
  43. 2842d31 Add more validation for input parameters. by klu2 · 16 years ago
  44. 8bc18cc fix the typo in DxeCore by eric_tian · 16 years ago
  45. f158ee6 Fix minor coding style issue for ScsiReadCapacity16Command() API in UefiScsiLib by qhuang8 · 16 years ago
  46. ca2ce09 Add warning message that tool chain tag will be ignored if user provide output directory from command line explicitly. by klu2 · 16 years ago
  47. e74738b In PrintXY() and AsciiPrintXY(), the number of chartacter returned is at most PcdUefiLibMaxPrintBufferSize, and will return the number of characters actually displayed on the screen not includng partial characters that may be clipped by the right edge of the display. by eric_tian · 16 years ago
  48. 5796de6 Add Fv name checking for build.exe if user gives FV name from command line. originally, this checking is only done by GenFds tool, that is too later. by klu2 · 16 years ago
  49. 6d40c63 Fix bug that trim crash when no parameter is input. by klu2 · 16 years ago
  50. 9449c39 Remove -c option for GenFds tool because it does not defined in build specification. by klu2 · 16 years ago
  51. 512a785 Update TargetTools for add set/get/clean BUILD_RULE_CONF option for target.txt file. by klu2 · 16 years ago
  52. 326c6b7 ConfigRouting should get driver handle by device path in all drivers database in system, not only in Hii Package list database. by vanjeff · 16 years ago
  53. 8d57945 add the extra comments into BasePeCoffRelocateImage, BasePeCoffLoadImage and BasePeCoffRelocateImageForRuntime to help user to know the usage model of these APIs. by eric_tian · 16 years ago
  54. 6ed623e Update GCC version of VAR_ARG () to be compatible with non GCC version of VAR_ARG () so it handles TYPE parameters that are smaller than UINTN properly when GCC builtins are used for vararg parsing. by mdkinney · 16 years ago
  55. 78b993a Fix ICC build break properly by mdkinney · 16 years ago
  56. 60ef642 Fix ICC build break by mdkinney · 16 years ago
  57. a5a3a29 Clarify BuildCvHob() API in HobLib to state that this function will ASSERT() if the platform does not support Capsule Volume HOBs. This allows PI implementations to ASSERT() and Framework implementations to provide a full implementation of this API. by mdkinney · 16 years ago
  58. c85cea8 Clarify BuildCvHob() API in HobLib to state that this function will ASSERT() if the platform does not support Capsule Volume HOBs. This allows PI implementations to ASSERT() and Framework implementations to provide a full implementation of this API. by mdkinney · 16 years ago
  59. 5e11e7c Update function header description of ScsiReadCapacity16Command() in the UEFI Scsi Library by mdkinney · 16 years ago
  60. aa2f249 Update comments in PeiMemoryAllocationLib and UefiMemoryAllocationLib to match updates to MemoryAllocationLib.h. by mdkinney · 16 years ago
  61. 6e10b70 Clarify that FreePages(), FreeAlignedPages(), and FreePool() may perform n actions if those operations are not possible. For example, the PEI Phase does not provide any services to free allocated pages or allocated pool memory. by mdkinney · 16 years ago
  62. 6cb6f07 Sync with PE/COFF Extra Action library class comments and add ASSERT() conditions if ImageContext is NULL. by mdkinney · 16 years ago
  63. 51f1a2b Sync with PE/COFF Extra Action library class comments and add ASSERT() conditions if ImageContext is NULL. by mdkinney · 16 years ago
  64. 727fb9b 1) Clarify file and function header comments for the PE/COFF Extra Action library class by mdkinney · 16 years ago
  65. b9c8d8b Clarify clipping behavior of PrintXY() and AsciiPrintXY(). by mdkinney · 16 years ago
  66. ae55f4e Fix bug in Reallocate Pool functions in DXE Core Memory Allocation Lib. The wrong memory type was being allocated. This syncs the DXE Core Memory Allocation Lib with the fix that was previously made to the UEFI Memory Allocation Lib. by mdkinney · 16 years ago
  67. 6babbe1 Clarify ASSERT() conditions for Reallocate Pool functions. by mdkinney · 16 years ago
  68. 0dcec41 Clean up comment by mdkinney · 16 years ago
  69. b672348 1. Assign BDS timeout PCD value. 2. Sync SetupVariableInit in Unix Platform. by vanjeff · 16 years ago
  70. 1ea1d3c SetMode() should clear screen per UEFI spec. by vanjeff · 16 years ago
  71. 0e8e994 Update SetupBrowserDxe and BdsDxe to use an internal string for prompting string missing instead of ASSERT if it fails to get a string for separate module's forms. by rsun3 · 16 years ago
  72. 844390f Update HiiDataBase driver to use GetBestLanguage() for matching RFC 4646 languages. by rsun3 · 16 years ago
  73. 62e71e2 Fix bugs in StrStr() and AsciiStrStr(). by rsun3 · 16 years ago
  74. 130a2ee The GCC compiler’s behavior is different than the Microsoft compilers for statically linked vararg functions. The GCC compilers do provide __builtin_ functions for accessing varargs. we should use these intrinsic functions with GCC by eric_tian · 16 years ago
  75. 7c9d25a Refine language conversion in ECP. Create a new library LanguageLib providing functions for language conversion between ISO 639-2 and RFC 4646 styles. Update FrameworkHiiOnUefiHiiThunk, UcOnUc2Thunk and Uc2OnUcThunk modules to use this library. by rsun3 · 16 years ago
  76. e779654 Remove the duplicated EdidActive.h & EdidDiscovery.h in DuetPkg. MdePkg has already defined these two files with the exactly same contents. by qhuang8 · 16 years ago
  77. 94b17fa First (Alpha) release of ShellPkg by jcarsey · 16 years ago
  78. 85a9032 Refine code for OemHookStatusCodeLibNull. by xli24 · 16 years ago
  79. da801a6 Fix DEC issue for MdeModulePkg: by klu2 · 16 years ago
  80. 754f83b Delete useless files. by gikidy · 16 years ago
  81. d4244a0 Remove -Os for UNIXGCC CC FLAGS to reduce size. by gikidy · 16 years ago
  82. 11d909a 1. Open USB related and logo support FVs, remove some useless FVs. by gikidy · 16 years ago
  83. 90e0655 Synchronize PCD_Infrastructure 0.55 with source code. by klu2 · 16 years ago
  84. 7507095 Synchronize PCD_Infrastructure 0.55 with source code. by klu2 · 16 years ago
  85. 1f2efb0 Remove duplicated PcdDebugPrintErrorLevel definition on same FixedAtBuild PCD type with different default value. by klu2 · 16 years ago
  86. c255449 fix the wrong data length. According to spec, to get interface and configuration descriptors, should pass 1 as data length. by eric_tian · 16 years ago
  87. 8b85412 Ported LZMA to DUET platform. by gikidy · 16 years ago
  88. 6672d62 correct the minor format. by lgao4 · 16 years ago
  89. 1a82ed3 Update BasePeCoff to Initialize the debug field to zero. by lgao4 · 16 years ago
  90. 57cca89 Remove usage of MemoryAllocationLib, and use a simplistic allocation by jljusten · 16 years ago
  91. de29c94 Add the optional EfiRom CodeRevision option. by lgao4 · 16 years ago
  92. 1a98add Update EfiRom to handle ClassCode and CodeRevision options correctly. by lgao4 · 16 years ago
  93. de9c25b GenFds change efirom command line option from '-I' to '-l'. by jlin16 · 16 years ago
  94. 1745666 Add SMM_DRIVER and SMM_CORE support by jwang36 · 16 years ago
  95. 3b2b355 GenFds add option ROM parameters override of those in INF file. by jlin16 · 16 years ago
  96. 19a4a0a Merge PEI & DXE LzmaCustomDecompressLib. A previous implementation by jljusten · 16 years ago
  97. f580c1b Fix a bug in UefiHiiLib. The size for allocating a buffer is StrSize instead of StrLen. by rsun3 · 16 years ago
  98. b4e3c5a fix the typo by eric_tian · 16 years ago
  99. de42c02 Fix a bug that L"PlatformLang" must be a null-terminated ASCII string according to UEFI spec. by qhuang8 · 16 years ago
  100. a137361 Fix a bug that L"PlatformLang" must be a null-terminated ASCII string according to UEFI spec. by qhuang8 · 16 years ago