<feed xmlns='http://www.w3.org/2005/Atom'>
<title>uefi/tianocore/edk2.git, branch edk2_master</title>
<subtitle>EDK II</subtitle>
<id>https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/atom?h=edk2_master</id>
<link rel='self' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/atom?h=edk2_master'/>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/'/>
<updated>2026-01-25T05:45:01+00:00</updated>
<entry>
<title>MdeModulePkg HelloWorld: Add the display information for GOP resolution</title>
<updated>2026-01-25T05:45:01+00:00</updated>
<author>
<name>Liming Gao</name>
<email>gaoliming@byosoft.com.cn</email>
</author>
<published>2026-01-25T05:45:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=ab336fdef2776bdedf57a9849e66e3514233133f'/>
<id>urn:sha1:ab336fdef2776bdedf57a9849e66e3514233133f</id>
<content type='text'>
Signed-off-by: Liming Gao &lt;gaoliming@byosoft.com.cn&gt;
</content>
</entry>
<entry>
<title>SignedCapsulePkg/Universal/RecoveryModuleLoadPei: 4KB alignment</title>
<updated>2026-01-23T18:55:54+00:00</updated>
<author>
<name>Michael D Kinney</name>
<email>michael.d.kinney@intel.com</email>
</author>
<published>2026-01-14T05:27:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=229fbfde14a32435f1c0854e90312325b0f2aba5'/>
<id>urn:sha1:229fbfde14a32435f1c0854e90312325b0f2aba5</id>
<content type='text'>
4KB alignment required because this module exceeds maximum size
for some NOOPT build configurations. This is a post-memory PEIM
that can be compressed, so size impacts for 4KB alignment can be
minimized. Must be in DLINK2_FLAGS to override DLINK_XIPFLAGS
for GCC PEIM build rules flags ordering.

Build failure detected with NOOPT AARCH64 builds.

Signed-off-by: Michael D Kinney &lt;michael.d.kinney@intel.com&gt;
</content>
</entry>
<entry>
<title>UefiCpuPkg: Fix VS2022 NOOPT IA32 build issues</title>
<updated>2026-01-23T17:59:06+00:00</updated>
<author>
<name>Michael D Kinney</name>
<email>michael.d.kinney@intel.com</email>
</author>
<published>2026-01-18T23:19:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=94a50ef550b9523a871b9742501995cba0920e67'/>
<id>urn:sha1:94a50ef550b9523a871b9742501995cba0920e67</id>
<content type='text'>
Update to consistently use IS_ALIGNED() to check for page aligned
values instead of &amp; or % operator with EFI_PAGE_SIZE or SIZE_4KB.
Use of % operator is a division operation that introduces use of
intrinsics for VS2022 NOOPT IA32 builds when 64-bit operands are
used.

Change PrevProcessorIndex in GetSmBase() from UINT64 to UINTN
to remove use of intrinsics in VS2022 NOOPT IA32 builds.

Change SmmProfileSize in InitSmmProfileInternal() from UINT64
to UINTN to resolve VS2022 NOOPT IA32 build issues.

Change SmmProfileSize in IsSmmProfileEnabled() from UINT64 to
UINTN to resolve VS2022 NOOPT IA32 build issues.

Change Size parameter in GetSmmProfileData() from UINT64 to
UINTN to resolve VS2022 NOOPT IA32 build issues.

Signed-off-by: Michael D Kinney &lt;michael.d.kinney@intel.com&gt;
</content>
</entry>
<entry>
<title>UefiCpuPkg/Library/CpuPageTableLib/UnitTest: Fix pointer compare</title>
<updated>2026-01-23T17:04:54+00:00</updated>
<author>
<name>Michael D Kinney</name>
<email>michael.d.kinney@intel.com</email>
</author>
<published>2026-01-14T05:46:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=811f56c9386be0dcd151cb5b1af3878c0a4e7b09'/>
<id>urn:sha1:811f56c9386be0dcd151cb5b1af3878c0a4e7b09</id>
<content type='text'>
Use UT_ASSERT_NOT_NULL() instead of UT_ASSERT_NOT_EQUAL() to
resolve build issues for comparing a pointers.  UT_ASSERT_NULL()
are UT_ASSERT_NOT_NULL() are intended to be used with pointers
and UT_ASSERT_EQUAL() and UT_ASSERT_NOT_EQUAL() are intended to
be used with integer values.

Signed-off-by: Michael D Kinney &lt;michael.d.kinney@intel.com&gt;
</content>
</entry>
<entry>
<title>MdeModulePkg/LoadFileOnFv2: Fix typo in Buffer parameter description</title>
<updated>2026-01-23T10:46:37+00:00</updated>
<author>
<name>Dongyan Qian</name>
<email>qiandongyan@loongson.cn</email>
</author>
<published>2025-11-10T02:05:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=6458470010c88be9699a86624bbbef51a722b910'/>
<id>urn:sha1:6458470010c88be9699a86624bbbef51a722b910</id>
<content type='text'>
The comment for the Buffer parameter incorrectly said
"then no the size" instead of "then the size".
This patch fixes the typo only; no functional changes.

Reported-by: Yao Zi &lt;ziyao@disroot.org&gt;
Signed-off-by: Dongyan Qian &lt;qiandongyan@loongson.cn&gt;
</content>
</entry>
<entry>
<title>MdePkg/LoadFile2: Fix typo in Buffer parameter description</title>
<updated>2026-01-23T10:46:37+00:00</updated>
<author>
<name>Dongyan Qian</name>
<email>qiandongyan@loongson.cn</email>
</author>
<published>2025-11-10T02:05:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=01cdc859e5acc4566b8d7714237a92064a81fa96'/>
<id>urn:sha1:01cdc859e5acc4566b8d7714237a92064a81fa96</id>
<content type='text'>
The comment for the Buffer parameter incorrectly said
"then no the size" instead of "then the size".
This patch fixes the typo only; no functional changes.

Reported-by: Yao Zi &lt;ziyao@disroot.org&gt;
Signed-off-by: Dongyan Qian &lt;qiandongyan@loongson.cn&gt;
</content>
</entry>
<entry>
<title>EmbeddedPkg/AndroidBootImgLib: Fix typo in Buffer parameter description</title>
<updated>2026-01-23T10:46:37+00:00</updated>
<author>
<name>Dongyan Qian</name>
<email>qiandongyan@loongson.cn</email>
</author>
<published>2025-11-10T02:02:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=b55b3ae351b23ade11fe4518b7f0d1ebe4ddac29'/>
<id>urn:sha1:b55b3ae351b23ade11fe4518b7f0d1ebe4ddac29</id>
<content type='text'>
The comment for the Buffer parameter incorrectly said
"then no the size" instead of "then the size".
This patch fixes the typo only; no functional changes.

Signed-off-by: Dongyan Qian &lt;qiandongyan@loongson.cn&gt;
</content>
</entry>
<entry>
<title>NetworkPkg/UefiPxeBcDxe: Fix typo in Buffer parameter description</title>
<updated>2026-01-23T10:46:37+00:00</updated>
<author>
<name>Dongyan Qian</name>
<email>qiandongyan@loongson.cn</email>
</author>
<published>2025-11-10T02:02:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=4890db2abc9339d79ac18b4420a3dcead7e50c66'/>
<id>urn:sha1:4890db2abc9339d79ac18b4420a3dcead7e50c66</id>
<content type='text'>
The comment for the Buffer parameter incorrectly said
"then no the size" instead of "then the size".
This patch fixes the typo only; no functional changes.

Signed-off-by: Dongyan Qian &lt;qiandongyan@loongson.cn&gt;
</content>
</entry>
<entry>
<title>MdeModulePkg/PciBusDxe: Fix typo in Buffer parameter description</title>
<updated>2026-01-23T10:46:37+00:00</updated>
<author>
<name>Dongyan Qian</name>
<email>qiandongyan@loongson.cn</email>
</author>
<published>2025-11-10T01:42:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=8c3e181b79c69e2e0c1fcb38bba28fdffb6bc0b6'/>
<id>urn:sha1:8c3e181b79c69e2e0c1fcb38bba28fdffb6bc0b6</id>
<content type='text'>
The comment for the Buffer parameter incorrectly said
"then no the size" instead of "then the size".
This patch fixes the typo only; no functional changes.

Signed-off-by: Dongyan Qian &lt;qiandongyan@loongson.cn&gt;
</content>
</entry>
<entry>
<title>UefiPayloadPkg: Fix build failure with CLANGPDB</title>
<updated>2026-01-23T07:30:48+00:00</updated>
<author>
<name>Khalid Ali</name>
<email>khaliidcaliy@gmail.com</email>
</author>
<published>2026-01-22T10:52:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/bootloaders/uefi/tianocore/edk2.git/commit/?id=8ba64a9a9417b45b033cf1307a9e96f3df2530f2'/>
<id>urn:sha1:8ba64a9a9417b45b033cf1307a9e96f3df2530f2</id>
<content type='text'>
EFI_PCI_IO_PROTOCOL-&gt;Pci services (Read and Write) take
EFI_PCI_IO_PROTOCOL_WIDTH as second argument. However in PciPlatformDxe
enum argument of EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH is usedwhich caused
build to fail.

Use EfiPciWidthUint32 which is enum member of EFI_PCI_IO_PROTOCOL_WIDTH.

Signed-off-by: Khalid Ali &lt;khaliidcaliy@gmail.com&gt;
</content>
</entry>
</feed>
