public inbox for buildroot@busybox.net
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/4] beagleboneai64, beagley_ai, beagleplay BSP update
@ 2026-03-08 21:33 Romain Naour via buildroot
  2026-03-08 21:33 ` [Buildroot] [PATCH 1/4] configs/beagleboneai64_defconfig: remove unused file hash Romain Naour via buildroot
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Romain Naour via buildroot @ 2026-03-08 21:33 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

Update linux to 6.18.16 and u-boot to 2026.01 for all tree boards.
The same ATF v2.12 LTS and OP-TEE version is now used for each boards.

This series is based on a previous series introducing
BR2_TARGET_UBOOT_NEEDS_OPTEE_TEE_RAW_BIN option [1].

[1] https://lore.kernel.org/buildroot/20260304213528.1380898-1-romain.naour@smile.fr/

Romain Naour (4):
  configs/beagleboneai64_defconfig: remove unused file hash
  configs/beagleboneai64_defconfig: bump to kernel 6.18.16
  configs/beagley_ai_defconfig: bump linux to 6.18.16 and u-boot to
    2026.01
  configs/beagleplay_defconfig: bump linux to 6.18.16 and u-boot to
    2026.01

 .../arm-trusted-firmware.hash                    |  2 --
 .../patches/linux-headers/linux-headers.hash     |  1 -
 .../beagleboneai64/patches/linux/linux.hash      |  2 +-
 .../arm-trusted-firmware.hash                    |  2 --
 .../patches/linux-headers/linux-headers.hash     |  1 -
 .../beagleplay/patches/linux/linux.hash          |  4 ++--
 .../beagleplay/patches/uboot/uboot.hash          |  2 +-
 .../patches/linux-headers/linux-headers.hash     |  1 -
 .../beagley-ai/patches/linux/linux.hash          |  4 ++--
 .../patches/ti-k3-r5-loader/ti-k3-r5-loader.hash |  2 +-
 .../beagley-ai/patches/uboot/uboot.hash          |  2 +-
 configs/beagleboneai64_defconfig                 |  2 +-
 configs/beagleplay_defconfig                     | 16 +++++++++-------
 configs/beagley_ai_defconfig                     |  9 +++++----
 14 files changed, 23 insertions(+), 27 deletions(-)
 delete mode 100644 board/beagleboard/beagleboneai64/patches/arm-trusted-firmware/arm-trusted-firmware.hash
 delete mode 120000 board/beagleboard/beagleboneai64/patches/linux-headers/linux-headers.hash
 delete mode 100644 board/beagleboard/beagleplay/patches/arm-trusted-firmware/arm-trusted-firmware.hash
 delete mode 120000 board/beagleboard/beagleplay/patches/linux-headers/linux-headers.hash
 delete mode 120000 board/beagleboard/beagley-ai/patches/linux-headers/linux-headers.hash

-- 
2.52.0

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 1/4] configs/beagleboneai64_defconfig: remove unused file hash
  2026-03-08 21:33 [Buildroot] [PATCH 0/4] beagleboneai64, beagley_ai, beagleplay BSP update Romain Naour via buildroot
@ 2026-03-08 21:33 ` Romain Naour via buildroot
  2026-03-10 23:19   ` Julien Olivain via buildroot
  2026-03-08 21:33 ` [Buildroot] [PATCH 2/4] configs/beagleboneai64_defconfig: bump to kernel 6.18.16 Romain Naour via buildroot
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Romain Naour via buildroot @ 2026-03-08 21:33 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

The commit [1] update arm-trusted-firmware to v2.12 LTS without
removing the custom file hash.

While at it, remove unused linux-headers.hash since we already use a
prebuilt toolchain.

[1] 4abb8a98b26922796b41bc913e72be487337640e

Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
 .../patches/arm-trusted-firmware/arm-trusted-firmware.hash      | 2 --
 .../beagleboneai64/patches/linux-headers/linux-headers.hash     | 1 -
 2 files changed, 3 deletions(-)
 delete mode 100644 board/beagleboard/beagleboneai64/patches/arm-trusted-firmware/arm-trusted-firmware.hash
 delete mode 120000 board/beagleboard/beagleboneai64/patches/linux-headers/linux-headers.hash

diff --git a/board/beagleboard/beagleboneai64/patches/arm-trusted-firmware/arm-trusted-firmware.hash b/board/beagleboard/beagleboneai64/patches/arm-trusted-firmware/arm-trusted-firmware.hash
deleted file mode 100644
index 6f02bfbb22..0000000000
--- a/board/beagleboard/beagleboneai64/patches/arm-trusted-firmware/arm-trusted-firmware.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally calculated
-sha256  7efa89e1b4e4106ee05d68e876c8efbb146364d89cfd5d26bf4647b09c08f32b  arm-trusted-firmware-v2.10-git4.tar.gz
diff --git a/board/beagleboard/beagleboneai64/patches/linux-headers/linux-headers.hash b/board/beagleboard/beagleboneai64/patches/linux-headers/linux-headers.hash
deleted file mode 120000
index 5808d92afe..0000000000
--- a/board/beagleboard/beagleboneai64/patches/linux-headers/linux-headers.hash
+++ /dev/null
@@ -1 +0,0 @@
-../linux/linux.hash
\ No newline at end of file
-- 
2.52.0

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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/4] configs/beagleboneai64_defconfig: bump to kernel 6.18.16
  2026-03-08 21:33 [Buildroot] [PATCH 0/4] beagleboneai64, beagley_ai, beagleplay BSP update Romain Naour via buildroot
  2026-03-08 21:33 ` [Buildroot] [PATCH 1/4] configs/beagleboneai64_defconfig: remove unused file hash Romain Naour via buildroot
@ 2026-03-08 21:33 ` Romain Naour via buildroot
  2026-03-08 21:33 ` [Buildroot] [PATCH 3/4] configs/beagley_ai_defconfig: bump linux to 6.18.16 and u-boot to 2026.01 Romain Naour via buildroot
  2026-03-08 21:33 ` [Buildroot] [PATCH 4/4] configs/beagleplay_defconfig: " Romain Naour via buildroot
  3 siblings, 0 replies; 6+ messages in thread
From: Romain Naour via buildroot @ 2026-03-08 21:33 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

There was a previous attempt in commit [1] to bump the kernel to 6.18
but the SD card failed at boot. It seems the actual issue is related to
the "cheap" (or fake?) SD card with SD UHS SDR50 speed.

This offending SD card come from a lot recently purchased in order to
fix my “Too many boards, not enough SD cards” issue.

[1] 4abb8a98b26922796b41bc913e72be487337640e

Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
 board/beagleboard/beagleboneai64/patches/linux/linux.hash | 2 +-
 configs/beagleboneai64_defconfig                          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/board/beagleboard/beagleboneai64/patches/linux/linux.hash b/board/beagleboard/beagleboneai64/patches/linux/linux.hash
index 7fbb81d7e3..eb4dcee958 100644
--- a/board/beagleboard/beagleboneai64/patches/linux/linux.hash
+++ b/board/beagleboard/beagleboneai64/patches/linux/linux.hash
@@ -1,2 +1,2 @@
 # From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
-sha256  9b4ccec7d8ceff4824f149e476ec06e83c86546ae8af82582871647809a62ef0  linux-6.12.70.tar.xz
+sha256  4f21c01f4d04c1d1b3ed794153f8900802c92497be620b07c4869530f2d28ee3  linux-6.18.16.tar.xz
diff --git a/configs/beagleboneai64_defconfig b/configs/beagleboneai64_defconfig
index 7bad1573b7..aeb158331f 100644
--- a/configs/beagleboneai64_defconfig
+++ b/configs/beagleboneai64_defconfig
@@ -11,7 +11,7 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/beagleboard/beagleboneai64/genimage.cfg"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.12.70"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.18.16"
 BR2_LINUX_KERNEL_USE_ARCH_DEFAULT_CONFIG=y
 BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/beagleboard/beagleboneai64/linux.fragment"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
-- 
2.52.0

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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 3/4] configs/beagley_ai_defconfig: bump linux to 6.18.16 and u-boot to 2026.01
  2026-03-08 21:33 [Buildroot] [PATCH 0/4] beagleboneai64, beagley_ai, beagleplay BSP update Romain Naour via buildroot
  2026-03-08 21:33 ` [Buildroot] [PATCH 1/4] configs/beagleboneai64_defconfig: remove unused file hash Romain Naour via buildroot
  2026-03-08 21:33 ` [Buildroot] [PATCH 2/4] configs/beagleboneai64_defconfig: bump to kernel 6.18.16 Romain Naour via buildroot
@ 2026-03-08 21:33 ` Romain Naour via buildroot
  2026-03-08 21:33 ` [Buildroot] [PATCH 4/4] configs/beagleplay_defconfig: " Romain Naour via buildroot
  3 siblings, 0 replies; 6+ messages in thread
From: Romain Naour via buildroot @ 2026-03-08 21:33 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

Replace OP-TEE TEE binary file tee-pager_v2.bin by tee-raw.bin using
the new option BR2_TARGET_UBOOT_NEEDS_OPTEE_TEE_RAW_BIN.

Remove unsued linux-headers.hash since we use a prebuilt toolchain.

Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
 .../beagley-ai/patches/linux-headers/linux-headers.hash  | 1 -
 board/beagleboard/beagley-ai/patches/linux/linux.hash    | 4 ++--
 .../patches/ti-k3-r5-loader/ti-k3-r5-loader.hash         | 2 +-
 board/beagleboard/beagley-ai/patches/uboot/uboot.hash    | 2 +-
 configs/beagley_ai_defconfig                             | 9 +++++----
 5 files changed, 9 insertions(+), 9 deletions(-)
 delete mode 120000 board/beagleboard/beagley-ai/patches/linux-headers/linux-headers.hash

diff --git a/board/beagleboard/beagley-ai/patches/linux-headers/linux-headers.hash b/board/beagleboard/beagley-ai/patches/linux-headers/linux-headers.hash
deleted file mode 120000
index 5808d92afe..0000000000
--- a/board/beagleboard/beagley-ai/patches/linux-headers/linux-headers.hash
+++ /dev/null
@@ -1 +0,0 @@
-../linux/linux.hash
\ No newline at end of file
diff --git a/board/beagleboard/beagley-ai/patches/linux/linux.hash b/board/beagleboard/beagley-ai/patches/linux/linux.hash
index 794837b285..eb4dcee958 100644
--- a/board/beagleboard/beagley-ai/patches/linux/linux.hash
+++ b/board/beagleboard/beagley-ai/patches/linux/linux.hash
@@ -1,2 +1,2 @@
-# Locally calculated
-sha256  2bb586c954277d070c8fdf6d7275faa93b4807d9bf3353b491d8149cca02b4fc  linux-6.15.6.tar.xz
+# From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
+sha256  4f21c01f4d04c1d1b3ed794153f8900802c92497be620b07c4869530f2d28ee3  linux-6.18.16.tar.xz
diff --git a/board/beagleboard/beagley-ai/patches/ti-k3-r5-loader/ti-k3-r5-loader.hash b/board/beagleboard/beagley-ai/patches/ti-k3-r5-loader/ti-k3-r5-loader.hash
index 440526977b..b6a925ea4e 100644
--- a/board/beagleboard/beagley-ai/patches/ti-k3-r5-loader/ti-k3-r5-loader.hash
+++ b/board/beagleboard/beagley-ai/patches/ti-k3-r5-loader/ti-k3-r5-loader.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256  0f933f6c5a426895bf306e93e6ac53c60870e4b54cda56d95211bec99e63bec7  u-boot-2025.07.tar.bz2
+sha256  b60d5865cefdbc75da8da4156c56c458e00de75a49b80c1a2e58a96e30ad0d54  u-boot-2026.01.tar.bz2
diff --git a/board/beagleboard/beagley-ai/patches/uboot/uboot.hash b/board/beagleboard/beagley-ai/patches/uboot/uboot.hash
index 440526977b..b6a925ea4e 100644
--- a/board/beagleboard/beagley-ai/patches/uboot/uboot.hash
+++ b/board/beagleboard/beagley-ai/patches/uboot/uboot.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256  0f933f6c5a426895bf306e93e6ac53c60870e4b54cda56d95211bec99e63bec7  u-boot-2025.07.tar.bz2
+sha256  b60d5865cefdbc75da8da4156c56c458e00de75a49b80c1a2e58a96e30ad0d54  u-boot-2026.01.tar.bz2
diff --git a/configs/beagley_ai_defconfig b/configs/beagley_ai_defconfig
index 67516d8681..d0a3bf58c4 100644
--- a/configs/beagley_ai_defconfig
+++ b/configs/beagley_ai_defconfig
@@ -11,7 +11,7 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/beagleboard/beagley-ai/genimage.cfg"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.15.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.18.16"
 BR2_LINUX_KERNEL_USE_ARCH_DEFAULT_CONFIG=y
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="ti/k3-am67a-beagley-ai"
@@ -28,22 +28,23 @@ BR2_TARGET_OPTEE_OS=y
 BR2_TARGET_OPTEE_OS_PLATFORM="k3-am62x"
 BR2_TARGET_TI_K3_R5_LOADER=y
 BR2_TARGET_TI_K3_R5_LOADER_CUSTOM_VERSION=y
-BR2_TARGET_TI_K3_R5_LOADER_CUSTOM_VERSION_VALUE="2025.07"
+BR2_TARGET_TI_K3_R5_LOADER_CUSTOM_VERSION_VALUE="2026.01"
 BR2_TARGET_TI_K3_R5_LOADER_BOARD_DEFCONFIG="am67a_beagley_ai_r5"
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2025.07"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2026.01"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="am67a_beagley_ai_a53"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_NEEDS_ATF_BL31=y
+BR2_TARGET_UBOOT_NEEDS_OPTEE_TEE=y
+BR2_TARGET_UBOOT_NEEDS_OPTEE_TEE_RAW_BIN=y
 BR2_TARGET_UBOOT_USE_BINMAN=y
 # BR2_TARGET_UBOOT_FORMAT_BIN is not set
 BR2_TARGET_UBOOT_FORMAT_IMG=y
 BR2_TARGET_UBOOT_SPL=y
 BR2_TARGET_UBOOT_SPL_NAME="tispl.bin"
-BR2_TARGET_UBOOT_CUSTOM_MAKEOPTS="TEE=$(BINARIES_DIR)/tee-pager_v2.bin"
 BR2_PACKAGE_HOST_DOSFSTOOLS=y
 BR2_PACKAGE_HOST_GENIMAGE=y
 BR2_PACKAGE_HOST_MTOOLS=y
-- 
2.52.0

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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 4/4] configs/beagleplay_defconfig: bump linux to 6.18.16 and u-boot to 2026.01
  2026-03-08 21:33 [Buildroot] [PATCH 0/4] beagleboneai64, beagley_ai, beagleplay BSP update Romain Naour via buildroot
                   ` (2 preceding siblings ...)
  2026-03-08 21:33 ` [Buildroot] [PATCH 3/4] configs/beagley_ai_defconfig: bump linux to 6.18.16 and u-boot to 2026.01 Romain Naour via buildroot
@ 2026-03-08 21:33 ` Romain Naour via buildroot
  3 siblings, 0 replies; 6+ messages in thread
From: Romain Naour via buildroot @ 2026-03-08 21:33 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

This commit:
    - updates the Kernel from 6.10 to 6.18.16
    - updates U-Boot from 2024.07 to 2026.01
    - updates arm-trusted-firmware from v2.11 to v2.12 LTS
    - switches to Bootlin external glibc stable toolchain

Replace OP-TEE TEE binary file tee-pager_v2.bin by tee-raw.bin using
the new option BR2_TARGET_UBOOT_NEEDS_OPTEE_TEE_RAW_BIN.

Remove unsued linux-headers.hash since we now use a prebuilt toolchain.

Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
 .../arm-trusted-firmware.hash                    |  2 --
 .../patches/linux-headers/linux-headers.hash     |  1 -
 .../beagleplay/patches/linux/linux.hash          |  4 ++--
 .../beagleplay/patches/uboot/uboot.hash          |  2 +-
 configs/beagleplay_defconfig                     | 16 +++++++++-------
 5 files changed, 12 insertions(+), 13 deletions(-)
 delete mode 100644 board/beagleboard/beagleplay/patches/arm-trusted-firmware/arm-trusted-firmware.hash
 delete mode 120000 board/beagleboard/beagleplay/patches/linux-headers/linux-headers.hash

diff --git a/board/beagleboard/beagleplay/patches/arm-trusted-firmware/arm-trusted-firmware.hash b/board/beagleboard/beagleplay/patches/arm-trusted-firmware/arm-trusted-firmware.hash
deleted file mode 100644
index 8b77e1f165..0000000000
--- a/board/beagleboard/beagleplay/patches/arm-trusted-firmware/arm-trusted-firmware.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally calculated
-sha256  c0f23ccc71c49989e9ad238acf334473c17b7c88f79a20c829c3d443e3794a22  arm-trusted-firmware-v2.11-git4.tar.gz
diff --git a/board/beagleboard/beagleplay/patches/linux-headers/linux-headers.hash b/board/beagleboard/beagleplay/patches/linux-headers/linux-headers.hash
deleted file mode 120000
index 5808d92afe..0000000000
--- a/board/beagleboard/beagleplay/patches/linux-headers/linux-headers.hash
+++ /dev/null
@@ -1 +0,0 @@
-../linux/linux.hash
\ No newline at end of file
diff --git a/board/beagleboard/beagleplay/patches/linux/linux.hash b/board/beagleboard/beagleplay/patches/linux/linux.hash
index 53eb143894..eb4dcee958 100644
--- a/board/beagleboard/beagleplay/patches/linux/linux.hash
+++ b/board/beagleboard/beagleplay/patches/linux/linux.hash
@@ -1,2 +1,2 @@
-# Locally calculated
-sha256  774698422ee54c5f1e704456f37c65c06b51b4e9a8b0866f34580d86fef8e226  linux-6.10.tar.xz
+# From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
+sha256  4f21c01f4d04c1d1b3ed794153f8900802c92497be620b07c4869530f2d28ee3  linux-6.18.16.tar.xz
diff --git a/board/beagleboard/beagleplay/patches/uboot/uboot.hash b/board/beagleboard/beagleplay/patches/uboot/uboot.hash
index fe9b4f53dc..b6a925ea4e 100644
--- a/board/beagleboard/beagleplay/patches/uboot/uboot.hash
+++ b/board/beagleboard/beagleplay/patches/uboot/uboot.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256  f591da9ab90ef3d6b3d173766d0ddff90c4ed7330680897486117df390d83c8f  u-boot-2024.07.tar.bz2
+sha256  b60d5865cefdbc75da8da4156c56c458e00de75a49b80c1a2e58a96e30ad0d54  u-boot-2026.01.tar.bz2
diff --git a/configs/beagleplay_defconfig b/configs/beagleplay_defconfig
index 42aa2fbd6e..90212bda44 100644
--- a/configs/beagleplay_defconfig
+++ b/configs/beagleplay_defconfig
@@ -1,5 +1,7 @@
 BR2_aarch64=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_10=y
+BR2_TOOLCHAIN_EXTERNAL=y
+BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
+BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_GLIBC_STABLE=y
 BR2_GLOBAL_PATCH_DIR="board/beagleboard/beagleplay/patches"
 BR2_DOWNLOAD_FORCE_CHECK_HASHES=y
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/beagleboard/beagleplay/post-build.sh"
@@ -7,7 +9,7 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT_ARGS="-c board/beagleboard/beagleplay/genimage.cfg"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.10"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.18.16"
 BR2_LINUX_KERNEL_USE_ARCH_DEFAULT_CONFIG=y
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="ti/k3-am625-beagleplay"
@@ -22,8 +24,7 @@ BR2_TARGET_ROOTFS_EXT2_4=y
 BR2_TARGET_ROOTFS_EXT2_SIZE="256M"
 # BR2_TARGET_ROOTFS_TAR is not set
 BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION_VALUE="v2.11"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_LATEST_LTS_2_12_VERSION=y
 BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="k3"
 BR2_TARGET_ARM_TRUSTED_FIRMWARE_TARGET_BOARD="lite"
 BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL32_OPTEE=y
@@ -31,17 +32,19 @@ BR2_TARGET_OPTEE_OS=y
 BR2_TARGET_OPTEE_OS_PLATFORM="k3-am62x"
 BR2_TARGET_TI_K3_R5_LOADER=y
 BR2_TARGET_TI_K3_R5_LOADER_CUSTOM_VERSION=y
-BR2_TARGET_TI_K3_R5_LOADER_CUSTOM_VERSION_VALUE="2024.07"
+BR2_TARGET_TI_K3_R5_LOADER_CUSTOM_VERSION_VALUE="2026.01"
 BR2_TARGET_TI_K3_R5_LOADER_BOARD_DEFCONFIG="am62x_beagleplay_r5"
 BR2_TARGET_TI_K3_R5_LOADER_TIBOOT3_BIN="tiboot3-am62x-gp-evm.bin"
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.07"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2026.01"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="am62x_beagleplay_a53"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_NEEDS_ATF_BL31=y
+BR2_TARGET_UBOOT_NEEDS_OPTEE_TEE=y
+BR2_TARGET_UBOOT_NEEDS_OPTEE_TEE_RAW_BIN=y
 BR2_TARGET_UBOOT_USE_BINMAN=y
 # BR2_TARGET_UBOOT_FORMAT_BIN is not set
 BR2_TARGET_UBOOT_FORMAT_IMG=y
@@ -49,7 +52,6 @@ BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
 BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot.img_unsigned"
 BR2_TARGET_UBOOT_SPL=y
 BR2_TARGET_UBOOT_SPL_NAME="tispl.bin_unsigned"
-BR2_TARGET_UBOOT_CUSTOM_MAKEOPTS="TEE=$(BINARIES_DIR)/tee-pager_v2.bin"
 BR2_PACKAGE_HOST_DOSFSTOOLS=y
 BR2_PACKAGE_HOST_GENIMAGE=y
 BR2_PACKAGE_HOST_MTOOLS=y
-- 
2.52.0

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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Buildroot] [PATCH 1/4] configs/beagleboneai64_defconfig: remove unused file hash
  2026-03-08 21:33 ` [Buildroot] [PATCH 1/4] configs/beagleboneai64_defconfig: remove unused file hash Romain Naour via buildroot
@ 2026-03-10 23:19   ` Julien Olivain via buildroot
  0 siblings, 0 replies; 6+ messages in thread
From: Julien Olivain via buildroot @ 2026-03-10 23:19 UTC (permalink / raw)
  To: Romain Naour; +Cc: buildroot

On 08/03/2026 22:33, Romain Naour via buildroot wrote:
> The commit [1] update arm-trusted-firmware to v2.12 LTS without
> removing the custom file hash.
> 
> While at it, remove unused linux-headers.hash since we already use a
> prebuilt toolchain.
> 
> [1] 4abb8a98b26922796b41bc913e72be487337640e
> 
> Signed-off-by: Romain Naour <romain.naour@smile.fr>

Series applied to master, thanks.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-03-10 23:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-08 21:33 [Buildroot] [PATCH 0/4] beagleboneai64, beagley_ai, beagleplay BSP update Romain Naour via buildroot
2026-03-08 21:33 ` [Buildroot] [PATCH 1/4] configs/beagleboneai64_defconfig: remove unused file hash Romain Naour via buildroot
2026-03-10 23:19   ` Julien Olivain via buildroot
2026-03-08 21:33 ` [Buildroot] [PATCH 2/4] configs/beagleboneai64_defconfig: bump to kernel 6.18.16 Romain Naour via buildroot
2026-03-08 21:33 ` [Buildroot] [PATCH 3/4] configs/beagley_ai_defconfig: bump linux to 6.18.16 and u-boot to 2026.01 Romain Naour via buildroot
2026-03-08 21:33 ` [Buildroot] [PATCH 4/4] configs/beagleplay_defconfig: " Romain Naour via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox