Skip to content

Commit

Permalink
Update MU_BASECORE to include cherrypick subhook submodule (#112)
Browse files Browse the repository at this point in the history
## Description

Subhook repo was deleted this was fixed by creating a mirror of the
submodule


microsoft/mu_basecore@a418ed9

- [ ] Impacts functionality?
- [ ] Impacts security?
- [ ] Breaking change?
- [ ] Includes tests?
- [ ] Includes documentation?

## How This Was Tested

Built the crypto binaries

## Integration Instructions

N/A
  • Loading branch information
Flickdm authored Dec 3, 2024
1 parent a8152d7 commit 4cbfc72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MU_BASECORE
Submodule MU_BASECORE updated 65 files
+17 −0 .cargo/config.toml
+3 −26 .github/pull_request_template.md
+1 −1 .gitmodules
+354 −274 .pytool/Plugin/ImageValidation/ImageValidation.py
+79 −69 .pytool/Plugin/ImageValidation/ReadMe.md
+70 −0 .pytool/Plugin/ImageValidation/image_validation.cfg
+1 −1 BaseTools/Conf/build_rule.template
+4 −0 BaseTools/Edk2ToolsBuild.py
+4 −1 BaseTools/Source/C/GNUmakefile
+18 −0 BaseTools/Source/C/GenStm/GNUmakefile
+728 −0 BaseTools/Source/C/GenStm/GenStm.c
+72 −0 BaseTools/Source/C/GenStm/GenStm.h
+17 −0 BaseTools/Source/C/GenStm/Makefile
+7 −0 BaseTools/Source/C/Makefile
+2 −2 BaseTools/Source/C/Makefiles/ms.common
+52 −1 CONTRIBUTING.md
+1 −1 MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf
+3 −0 MdeModulePkg/Test/MdeModulePkgHostTest.dsc
+71 −0 MdeModulePkg/Test/Mock/Include/GoogleTest/Library/MockCapsuleLib.h
+31 −0 MdeModulePkg/Test/Mock/Include/GoogleTest/Library/MockPlatformHookLib.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
+13 −0 MdeModulePkg/Test/Mock/Library/GoogleTest/MockPlatformHookLib/MockPlatformHookLib.cpp
+36 −0 MdeModulePkg/Test/Mock/Library/GoogleTest/MockPlatformHookLib/MockPlatformHookLib.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
+86 −0 MdePkg/Include/Library/BaseLib.h
+21 −23 MdePkg/Include/Pi/PiStatusCode.h
+0 −1 MdePkg/Include/Register/Intel/StmApi.h
+5 −5 MdePkg/Library/BaseLib/AArch64/ArmReadIdAA64Isar0Reg.S
+5 −5 MdePkg/Library/BaseLib/AArch64/ArmReadIdAA64Isar0Reg.asm
+3 −0 MdePkg/Library/BaseLib/BaseLib.inf
+0 −12 MdePkg/Library/BaseRngLib/AArch64/ArmRng.h
+2 −9 MdePkg/Library/BaseRngLib/AArch64/Rndr.c
+0 −2 MdePkg/Library/BaseRngLib/BaseRngLib.inf
+4 −0 MdePkg/Test/MdePkgHostTest.dsc
+31 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockDxeServicesTableLib.h
+127 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockPciLib.h
+106 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockPerformanceLib.h
+25 −0 MdePkg/Test/Mock/Include/GoogleTest/Library/MockUefiBootServicesTableLib.h
+7 −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
+79 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockGenericMemoryTest.h
+51 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockReportStatusCodeHandler.h
+50 −0 MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockSmmReportStatusCodeHandler.h
+36 −0 MdePkg/Test/Mock/Library/GoogleTest/MockDxeServicesTableLib/MockDxeServicesTableLib.cpp
+32 −0 MdePkg/Test/Mock/Library/GoogleTest/MockDxeServicesTableLib/MockDxeServicesTableLib.inf
+23 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPciLib/MockPciLib.cpp
+33 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPciLib/MockPciLib.inf
+21 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPerformanceLib/MockPerformanceLib.cpp
+34 −0 MdePkg/Test/Mock/Library/GoogleTest/MockPerformanceLib/MockPerformanceLib.inf
+6 −3 MdePkg/Test/Mock/Library/GoogleTest/MockUefiBootServicesTableLib/MockUefiBootServicesTableLib.cpp
+2 −0 MdePkg/Test/Mock/Library/GoogleTest/MockUefiLib/MockUefiLib.cpp
+2 −1 MdePkg/Test/Mock/Library/GoogleTest/MockUefiRuntimeServicesTableLib/MockUefiRuntimeServicesTableLib.cpp
+5 −5 UefiCpuPkg/PiSmmCpuDxeSmm/MpService.c
+8 −3 UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.h
+1 −0 UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf
+14 −5 UefiCpuPkg/PiSmmCpuDxeSmm/SyncTimer.c
+2 −2 UefiCpuPkg/UefiCpuPkg.dec
+2 −2 UefiCpuPkg/UefiCpuPkg.uni
+2 −2 UnitTestFrameworkPkg/ReadMe.md
+1 −1 pip-requirements.txt

0 comments on commit 4cbfc72

Please sign in to comment.