Skip to content

Commit

Permalink
Bump MU_BASECORE from f481172 to 2ccc240
Browse files Browse the repository at this point in the history
Bumps [MU_BASECORE](https://github.com/microsoft/mu_basecore) from `f481172` to `2ccc240`.
- [Release notes](https://github.com/microsoft/mu_basecore/releases)
- [Commits](microsoft/mu_basecore@f481172...2ccc240)

---
updated-dependencies:
- dependency-name: MU_BASECORE
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and sunflower2333 committed Oct 29, 2024
1 parent fa0abf2 commit 7e2c713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MU_BASECORE
Submodule MU_BASECORE updated 71 files
+1 −1 .github/pull_request_template.md
+33 −57 .pytool/Plugin/ImageValidation/ImageValidation.py
+2 −1 .pytool/Plugin/ImageValidation/ReadMe.md
+3 −3 BaseTools/Source/Python/ProductDataFormatter/ProductDataFormatter.py
+1 −1 CONTRIBUTING.md
+2 −2 CryptoPkg/Library/BaseCryptLibOnProtocolPpi/DxeCryptLib.c
+2 −2 CryptoPkg/Library/BaseCryptLibOnProtocolPpi/PeiCryptLib.c
+2 −2 CryptoPkg/Library/BaseCryptLibOnProtocolPpi/RuntimeDxeCryptLib.c
+2 −2 CryptoPkg/Library/BaseCryptLibOnProtocolPpi/SmmCryptLib.c
+2 −2 CryptoPkg/Library/BaseCryptLibOnProtocolPpi/StandaloneMmCryptLib.c
+1 −1 MdeModulePkg/Bus/Pci/PciBusDxe/PciLib.c
+15 −8 MdeModulePkg/Core/Dxe/Gcd/Gcd.c
+1 −0 MdeModulePkg/Core/PiSmmCore/Smi.c
+2 −0 MdeModulePkg/Test/MdeModulePkgHostTest.dsc
+71 −0 MdeModulePkg/Test/Mock/Include/GoogleTest/Library/MockCapsuleLib.h
+234 −0 MdeModulePkg/Test/Mock/Include/GoogleTest/Library/MockUefiBootManagerLib.h
+20 −0 MdeModulePkg/Test/Mock/Library/GoogleTest/MockCapsuleLib/MockCapsuleLib.cpp
+35 −0 MdeModulePkg/Test/Mock/Library/GoogleTest/MockCapsuleLib/MockCapsuleLib.inf
+43 −0 MdeModulePkg/Test/Mock/Library/GoogleTest/MockUefiBootManagerLib/MockUefiBootManagerLib.cpp
+35 −0 MdeModulePkg/Test/Mock/Library/GoogleTest/MockUefiBootManagerLib/MockUefiBootManagerLib.inf
+7 −1 MdeModulePkg/Universal/FaultTolerantWriteDxe/FtwMisc.c
+3 −2 MdeModulePkg/Universal/HiiDatabaseDxe/ConfigKeywordHandler.c
+86 −0 MdePkg/Include/Library/BaseLib.h
+5 −5 MdePkg/Library/BaseLib/AArch64/ArmReadIdAA64Isar0Reg.S
+5 −5 MdePkg/Library/BaseLib/AArch64/ArmReadIdAA64Isar0Reg.asm
+2 −0 MdePkg/Library/BaseLib/BaseLib.inf
+0 −12 MdePkg/Library/BaseRngLib/AArch64/ArmRng.h
+2 −8 MdePkg/Library/BaseRngLib/AArch64/Rndr.c
+0 −2 MdePkg/Library/BaseRngLib/BaseRngLib.inf
+6 −0 MdePkg/Test/MdePkgHostTest.dsc
+64 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockCpuLib.h
+31 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockDxeServicesTableLib.h
+300 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockPcdLib.h
+350 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockPciSegmentLib.h
+106 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockPerformanceLib.h
+29 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockReportStatusCodeLib.h
+89 −7 MdePkg/Test/Mock/Include/GoogleTest/Library/MockSmmServicesTableLib.h
+25 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockUefiBootServicesTableLib.h
+16 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockUefiLib.h
+9 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockUefiRuntimeServicesTableLib.h
+48 −0 MdePkg/Test/Mock/Include/GoogleTest/Ppi/MockPeiReportStatusCodeHandler.h
+139 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockAcpiSystemDescriptionTable.h
+56 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockAcpiTable.h
+144 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockFirmwareVolume2.h
+80 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockGenericMemoryTest.h
+124 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockMpService.h
+51 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockReportStatusCodeHandler.h
+50 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockSmmReportStatusCodeHandler.h
+17 −0 MdePkg/Test/Mock/Library/GoogleTest/MockCpuLib/MockCpuLib.cpp
+33 −0 MdePkg/Test/Mock/Library/GoogleTest/MockCpuLib/MockCpuLib.inf
+36 −0 MdePkg/Test/Mock/Library/GoogleTest/MockDxeServicesTableLib/MockDxeServicesTableLib.cpp
+32 −0 MdePkg/Test/Mock/Library/GoogleTest/MockDxeServicesTableLib/MockDxeServicesTableLib.inf
+54 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPcdLib/MockPcdLib.cpp
+34 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPcdLib/MockPcdLib.inf
+43 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPciSegmentLib/MockPciSegmentLib.cpp
+33 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPciSegmentLib/MockPciSegmentLib.inf
+21 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPerformanceLib/MockPerformanceLib.cpp
+34 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPerformanceLib/MockPerformanceLib.inf
+11 −0 MdePkg/Test/Mock/Library/GoogleTest/MockReportStatusCodeLib/MockReportStatusCodeLib.cpp
+33 −0 MdePkg/Test/Mock/Library/GoogleTest/MockReportStatusCodeLib/MockReportStatusCodeLib.inf
+34 −25 MdePkg/Test/Mock/Library/GoogleTest/MockSmmServicesTableLib/MockSmmServicesTableLib.cpp
+6 −3 MdePkg/Test/Mock/Library/GoogleTest/MockUefiBootServicesTableLib/MockUefiBootServicesTableLib.cpp
+3 −0 MdePkg/Test/Mock/Library/GoogleTest/MockUefiLib/MockUefiLib.cpp
+2 −1 MdePkg/Test/Mock/Library/GoogleTest/MockUefiRuntimeServicesTableLib/MockUefiRuntimeServicesTableLib.cpp
+7 −0 NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c
+7 −0 NetworkPkg/UefiPxeBcDxe/PxeBcImpl.c
+1 −0 NetworkPkg/UefiPxeBcDxe/PxeBcImpl.h
+1 −0 NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
+13 −5 ReadMe.rst
+3 −3 pip-requirements.txt
+2 −2 rust-toolchain.toml

0 comments on commit 7e2c713

Please sign in to comment.