From b886e01d97ff9096fd5aab41a54f595d739193e9 Mon Sep 17 00:00:00 2001 From: Sudeep Holla Date: Fri, 6 Sep 2024 13:55:20 +0100 Subject: [PATCH] config: buildroot: Bump the version from 2022.05.3 to 2024.05.2 The current buildroot version is atleast 2 years old now. While most of the things are just fine and continue to work with this version, the recently added OPTEE tests has some indirect dependency. Buildroot v2022.05.3 uses OPTEE tests v3.17.0 which fails running some tests and they are fixed in later versions. Using this as the opportunity bump the buildroot versions from 2022.05.3 to 2024.05.2. As a result the OPTEE test versions are updated to v4.2.0. Also regenerate the buildroot.config using savedefconfig while we are updating the version. The glibc is the default library now and hence the generated file drops the entry for the same. Note the step for the regeneration is also added so that one can just uncomment it when needed. Signed-off-by: Sudeep Holla --- config/buildroot.config | 1 - config/buildroot.yaml | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/config/buildroot.config b/config/buildroot.config index 63e838c..a0aa3f8 100644 --- a/config/buildroot.config +++ b/config/buildroot.config @@ -1,5 +1,4 @@ BR2_aarch64=y -BR2_TOOLCHAIN_BUILDROOT_GLIBC=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_TOOLCHAIN_BUILDROOT_FORTRAN=y BR2_GCC_ENABLE_OPENMP=y diff --git a/config/buildroot.yaml b/config/buildroot.yaml index 0c4785f..555c2d2 100644 --- a/config/buildroot.yaml +++ b/config/buildroot.yaml @@ -13,7 +13,7 @@ build: buildroot: repo: remote: https://github.com/buildroot/buildroot.git - revision: 2022.05.3 + revision: 2024.05.2 toolchain: aarch64-linux-gnu- @@ -22,6 +22,9 @@ build: prebuild: # Start from default config, but allow higher level layers to modify it. - make BR2_JLEVEL=${param:jobs} O=${param:builddir} BR2_DEFCONFIG=${param:configdir}/buildroot.config defconfig + # Uncomment the below line if you want to regenerate the defconfig and + # save it to ${param:configdir}/buildroot.config + # - make BR2_JLEVEL=${param:jobs} O=${param:builddir} BR2_DEFCONFIG=${param:configdir}/buildroot.config savedefconfig build: # Finalize the config. -- GitLab