Bump submodules to include CodeQL fixes (#374)

## Description

Updates all Mu submodules to latest to pull in CodeQL fixes.

- [ ] Impacts functionality?
  - **Functionality** - Does the change ultimately impact how firmware functions?
  - Examples: Add a new library, publish a new PPI, update an algorithm, ...
- [x] Impacts security?
  - **Security** - Does the change have a direct security impact on an application,
    flow, or firmware?
  - Examples: Crypto algorithm change, buffer overflow fix, parameter
    validation improvement, ...
- [ ] Breaking change?
  - **Breaking change** - Will anyone consuming this change experience a break
    in build or boot behavior?
  - Examples: Add a new library class, move a module to a different repo, call
    a function in a new library class in a pre-existing module, ...
- [ ] Includes tests?
  - **Tests** - Does the change include any explicit test code?
  - Examples: Unit tests, integration tests, robot tests, ...
- [ ] Includes documentation?
  - **Documentation** - Does the change contain explicit documentation additions
    outside direct code modifications (and comments)?
  - Examples: Update readme file, add feature readme file, link to documentation
    on an a separate Web page, ...

## How This Was Tested

Build and boot to EFI shell.

## Integration Instructions

N/A

Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
This commit is contained in:
Michael Kubacki 2023-02-24 17:48:08 -05:00 коммит произвёл GitHub
Родитель 0018b1baa4
Коммит 440645b495
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
8 изменённых файлов: 30 добавлений и 7 удалений

@ -1 +1 @@
Subproject commit 1a9fe198ce5bbf36b4097b94bdc22ece1cf4b3d2
Subproject commit 1e0679d3660753c48945369cc7f1f7a07c0f3d79

@ -1 +1 @@
Subproject commit bd15c600d21da68c6fe29e5dccc7d77642e14a26
Subproject commit 577c811f6304a63838fe8ed12cb8576684856b29

@ -1 +1 @@
Subproject commit 9c0fde92a04e1588ba6fce30667075867f9eacb0
Subproject commit a5788556169b30330a4b5d5543d4ea0510b77d13

@ -1 +1 @@
Subproject commit 8edefc5e6bc0de9bbced8b22f1c0c7400e0d060e
Subproject commit d98938187c1527dc2dfc796c055448d704f0f82f

Просмотреть файл

@ -9,6 +9,6 @@
"name": "FEATURE_MM_SUPV",
"var_name": "FEATURE_MM_SUPV_PATH",
"source": "https://github.com/microsoft/mu_feature_mm_supv.git",
"version": "c9f9f7209a0e9a0b5ae72c457827e496fd8f0880",
"version": "1988ccfba722edb1eca4a3f7baf5034f5c7e2d8a",
"flags": ["set_build_var"]
}

@ -1 +1 @@
Subproject commit fb747f1560b4c2f935a84e1b9b454f4405e3690a
Subproject commit 57c1d9690232fea286d758821c22f3b44b491d17

Просмотреть файл

@ -18,6 +18,29 @@
// Number of Virtual Memory Map Descriptors
#define MAX_VIRTUAL_MEMORY_MAP_DESCRIPTORS 5
// MU_CHANGE START
/**
Checks if the platform requires a special initial EFI memory region.
@param[out] EfiMemoryBase The custom memory base, will be unchanged if FALSE is returned.
@param[out] EfiMemorySize The custom memory size, will be unchanged if FALSE is returned.
@retval TRUE A custom memory region was set.
@retval FALSE A custom memory region was not set.
**/
BOOLEAN
EFIAPI
ArmPlatformGetPeiMemory (
OUT UINTN *EfiMemoryBase,
OUT UINT32 *EfiMemorySize
)
{
return FALSE;
}
// MU_CHANGE END
RETURN_STATUS
EFIAPI
SbsaQemuLibConstructor (

@ -1 +1 @@
Subproject commit 1ec83081a45bda02e8e109ddac77f623a9803355
Subproject commit c33d0783c6e53bfff2969a34021d4d4d1cd3b856