public inbox for buildroot@busybox.net
 help / color / mirror / Atom feed
From: Julien Olivain via buildroot <buildroot@buildroot.org>
To: Romain Naour <romain.naour@smile.fr>
Cc: buildroot@buildroot.org, "Dick Olsson" <hi@senzilla.io>,
	"Thomas Petazzoni" <thomas.petazzoni@bootlin.com>,
	"Vincent Stehlé" <vincent.stehle@arm.com>
Subject: Re: [Buildroot] [PATCH 3/3] boot/edk2: bump to version edk2-stable202511
Date: Sun, 01 Feb 2026 22:53:19 +0100	[thread overview]
Message-ID: <a3c30c525a648b03b3ee9755fdcd6a4d@free.fr> (raw)
In-Reply-To: <82fffd9a-dcd8-4dc6-8f33-c85e8d3f836c@smile.fr>

Hi Romain,

On 01/02/2026 22:21, Romain Naour via buildroot wrote:
> Hello Julien,
> 
> Le 24/01/2026 à 14:13, Julien Olivain a écrit :
>> For release notes since edk2-stable202508, see:
>> https://github.com/tianocore/edk2/releases/tag/edk2-stable202511
>> 
>> This commit also updates the edk2-platforms packages with the last
>> commit merged at the edk2 release date (2025-11-19), which corresponds
>> to commit [1].
>> The edk2-non-osi package is also updated the same way, which
>> corresponds to commit [2].
>> 
>> This commit also adds an edk2-platforms package patch to fix a Marvell
>> build failure seen with the SolidRun MacchiatoBin platform.
>> 
>> This commit has been runtime tested with tests using EDK2 package,
>> with commands:
>> 
>>     support/testing/run-tests \
>>         -d dl -o output_folder \
>>             tests.boot.test_edk2 \
>>             tests.boot.test_grub.TestGrubAArch64EFI \
>>             tests.boot.test_grub.TestGrubRiscV64EFI \
>>             tests.boot.test_grub.TestGrubX8664EFI \
>>             tests.package.test_fwts
>> 
>> It has also been runtime tested (by booting in qemu) with defconfigs
>> using EDK2 package:
>> qemu_aarch64_sbsa_defconfig
>> qemu_loongarch64_virt_efi_defconfig
>> qemu_riscv64_virt_efi_defconfig
>> qemu_x86_64_efi_defconfig
>> 
>> [1] 
>> https://github.com/tianocore/edk2-platforms/commit/1e64c1109ae2ac0185351e8d0c19732970d4fecf
>> [2] 
>> https://github.com/tianocore/edk2-non-osi/commit/94d048981116e2e3eda52dad1a89958ee404098d
>> 
>> Cc: Dick Olsson <hi@senzilla.io>
>> Cc: Romain Naour <romain.naour@smile.fr>
>> Cc: Vincent Stehlé <vincent.stehle@arm.com>
>> Signed-off-by: Julien Olivain <ju.o@free.fr>
>> ---
>> The edk2-platforms patch contains CR-LF line endings, which might be 
>> changed
>> by the mailing list to LF. This can make the patch not apply cleanly. 
>> For
>> convenience, I also published those patches at:
>> https://gitlab.com/jolivain/buildroot/-/commits/bump_edk2-stable202511
>> ---
>>  Config.in.legacy                              |  7 ++
>>  boot/edk2/Config.in                           | 12 +--
>>  boot/edk2/edk2.hash                           |  2 +-
>>  boot/edk2/edk2.mk                             | 15 +---
>>  package/edk2-non-osi/edk2-non-osi.hash        |  2 +-
>>  package/edk2-non-osi/edk2-non-osi.mk          |  2 +-
>>  ...Marvell-fix-SMBIOS-type-7-structures.patch | 80 
>> +++++++++++++++++++
>>  package/edk2-platforms/edk2-platforms.hash    |  2 +-
>>  package/edk2-platforms/edk2-platforms.mk      |  2 +-
>>  9 files changed, 97 insertions(+), 27 deletions(-)
>>  create mode 100644 
>> package/edk2-platforms/0001-Silicon-Marvell-fix-SMBIOS-type-7-structures.patch
>> 
> 
> ...
> 
>> diff --git a/boot/edk2/edk2.mk b/boot/edk2/edk2.mk
>> index 2c089aefca..dba4aed513 100644
>> --- a/boot/edk2/edk2.mk
>> +++ b/boot/edk2/edk2.mk
>> @@ -4,7 +4,7 @@
>>  #
>>  
>> ################################################################################
>> 
>> -EDK2_VERSION = edk2-stable202508
>> +EDK2_VERSION = edk2-stable202511
>>  EDK2_SITE = https://github.com/tianocore/edk2
>>  EDK2_SITE_METHOD = git
>>  EDK2_LICENSE = BSD-2-Clause-Patent
>> @@ -56,14 +56,7 @@ EDK2_GIT_SUBMODULES = YES
>>  EDK2_BUILD_PACKAGES = $(@D)/Build/Buildroot
>>  EDK2_PACKAGES_PATHS = $(@D) $(EDK2_BUILD_PACKAGES) 
>> $(STAGING_DIR)/usr/share/edk2-platforms
>> 
>> -ifeq ($(BR2_TARGET_EDK2_PLATFORM_OVMF_I386),y)
>> -EDK2_ARCH = IA32
>> -EDK2_DEPENDENCIES += host-nasm
>> -EDK2_PACKAGE_NAME = OvmfPkg
>> -EDK2_PLATFORM_NAME = OvmfPkgIa32
>> -EDK2_BUILD_DIR = OvmfIa32
>> -
>> -else ifeq ($(BR2_TARGET_EDK2_PLATFORM_OVMF_X64),y)
>> +ifeq ($(BR2_TARGET_EDK2_PLATFORM_OVMF_X64),y)
>>  EDK2_ARCH = X64
>>  EDK2_DEPENDENCIES += host-nasm
>>  EDK2_PACKAGE_NAME = OvmfPkg
>> @@ -74,13 +67,13 @@ else ifeq 
>> ($(BR2_TARGET_EDK2_PLATFORM_ARM_VIRT_QEMU),y)
>>  EDK2_ARCH = AARCH64
>>  EDK2_PACKAGE_NAME = ArmVirtPkg
>>  EDK2_PLATFORM_NAME = ArmVirtQemu
>> -EDK2_BUILD_DIR = $(EDK2_PLATFORM_NAME)-$(EDK2_ARCH)
>> +EDK2_BUILD_DIR = $(EDK2_PLATFORM_NAME)-AArch64
>> 
>>  else ifeq ($(BR2_TARGET_EDK2_PLATFORM_ARM_VIRT_QEMU_KERNEL),y)
>>  EDK2_ARCH = AARCH64
>>  EDK2_PACKAGE_NAME = ArmVirtPkg
>>  EDK2_PLATFORM_NAME = ArmVirtQemuKernel
>> -EDK2_BUILD_DIR = $(EDK2_PLATFORM_NAME)-$(EDK2_ARCH)
>> +EDK2_BUILD_DIR = $(EDK2_PLATFORM_NAME)-AArch64
> 
> It seems the commit log doesn't explain this change.

You are correct. I forgot to include the explanation.

The following text should be added in the commit log:

"""
Upstream commit [3] removed the 32bit ARM Virtual Platforms. The
specific change [4] changed a "$(ARCH)" to "AArch64". Possible
values for "$(ARCH)" were "AARCH64" or "ARM". Since Linux has
a case sensitive filesystem, the EDK2_BUILD_DIR values needs to be
updated accordingly.

[3] 
https://github.com/tianocore/edk2/commit/b471ed29694c375ea1b6b484eb71af73ed61fece
[4] 
https://github.com/tianocore/edk2/commit/b471ed29694c375ea1b6b484eb71af73ed61fece#diff-55200ac934bbe6e81bb4158bfff4797992b13fb1afb95fe982853024c6018430L20-R21
"""

For convenience, I've also published this updated commit log at:
https://gitlab.com/jolivain/buildroot/-/commits/bump_edk2-stable202511_v2

Tell me if you want me to send a v2 on the list.

> Best regards,
> Romain

Best regards,

Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2026-02-01 21:53 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-24 13:13 [Buildroot] [PATCH 1/3] support/testing: fs/test_iso9660: remove 32bit EFI tests Julien Olivain via buildroot
2026-01-24 13:13 ` [Buildroot] [PATCH 2/3] support/testing: boot/test_grub: remove 32bit EFI test Julien Olivain via buildroot
2026-03-14  7:53   ` Thomas Perale via buildroot
2026-01-24 13:13 ` [Buildroot] [PATCH 3/3] boot/edk2: bump to version edk2-stable202511 Julien Olivain via buildroot
2026-02-01 21:21   ` Romain Naour via buildroot
2026-02-01 21:53     ` Julien Olivain via buildroot [this message]
2026-02-02  9:51       ` Romain Naour via buildroot
2026-02-02 14:19         ` Julien Olivain via buildroot
2026-03-04 21:50           ` Romain Naour via buildroot
2026-03-14  7:53 ` [Buildroot] [PATCH 1/3] support/testing: fs/test_iso9660: remove 32bit EFI tests Thomas Perale via buildroot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a3c30c525a648b03b3ee9755fdcd6a4d@free.fr \
    --to=buildroot@buildroot.org \
    --cc=hi@senzilla.io \
    --cc=ju.o@free.fr \
    --cc=romain.naour@smile.fr \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=vincent.stehle@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox